pub struct SignerList { /* private fields */ }Implementations§
Trait Implementations§
Source§impl Clone for SignerList
impl Clone for SignerList
Source§fn clone(&self) -> SignerList
fn clone(&self) -> SignerList
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SignerList
Source§impl Debug for SignerList
impl Debug for SignerList
impl Eq for SignerList
Source§impl LedgerObjectCommonFields for SignerList
impl LedgerObjectCommonFields for SignerList
Source§fn get_slot_num(&self) -> i32
fn get_slot_num(&self) -> i32
Returns the slot number (register number) where the ledger object is stored. Read more
Source§fn path(&self) -> LedgerPathBuilder
fn path(&self) -> LedgerPathBuilder
Starts a nested-field path rooted at this ledger object, read through its slot. Read more
Source§impl PartialEq for SignerList
impl PartialEq for SignerList
Source§impl SignerListFields for SignerList
impl SignerListFields for SignerList
Source§fn owner_node(&self) -> Result<u64>
fn owner_node(&self) -> Result<u64>
A hint indicating which page of the owner directory links to this object, in case the
directory consists of multiple pages.
Source§fn signer_quorum(&self) -> Result<u32>
fn signer_quorum(&self) -> Result<u32>
A target number for signer weights. To produce a valid signature for the owner of this
SignerList, the signers must provide valid signatures whose weights sum to this value or
more.
Source§fn signer_list_id(&self) -> Result<u32>
fn signer_list_id(&self) -> Result<u32>
An ID for this signer list. Currently always set to
0. If a future amendment allows
multiple signer lists for an account, this may change.Source§fn previous_txn_id(&self) -> Result<Hash256>
fn previous_txn_id(&self) -> Result<Hash256>
The identifying hash of the transaction that most recently modified this object.
Source§fn previous_txn_lgr_seq(&self) -> Result<u32>
fn previous_txn_lgr_seq(&self) -> Result<u32>
The index of the ledger that contains the transaction that most recently modified this
object.
impl StructuralPartialEq for SignerList
Auto Trait Implementations§
impl Freeze for SignerList
impl RefUnwindSafe for SignerList
impl Send for SignerList
impl Sync for SignerList
impl Unpin for SignerList
impl UnsafeUnpin for SignerList
impl UnwindSafe for SignerList
Blanket Implementations§
§impl<T> AnySync for T
impl<T> AnySync for T
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more