pub struct AccountEntry {
pub accountID: AccountID,
pub balance: int64,
pub seqNum: SequenceNumber,
pub numSubEntries: uint32,
pub inflationDest: Option<Box<AccountID>>,
pub flags: uint32,
pub homeDomain: string32,
pub thresholds: Thresholds,
pub signers: Vec<Signer>,
pub ext: AccountEntryExt,
}
Fields§
§accountID: AccountID
§balance: int64
§seqNum: SequenceNumber
§numSubEntries: uint32
§inflationDest: Option<Box<AccountID>>
§flags: uint32
§homeDomain: string32
§thresholds: Thresholds
§signers: Vec<Signer>
§ext: AccountEntryExt
Trait Implementations§
Source§impl Clone for AccountEntry
impl Clone for AccountEntry
Source§fn clone(&self) -> AccountEntry
fn clone(&self) -> AccountEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AccountEntry
impl Debug for AccountEntry
Source§impl<Out: Write> Pack<Out> for AccountEntry
impl<Out: Write> Pack<Out> for AccountEntry
Source§impl PartialEq for AccountEntry
impl PartialEq for AccountEntry
Source§impl<In: Read> Unpack<In> for AccountEntry
impl<In: Read> Unpack<In> for AccountEntry
impl Eq for AccountEntry
impl StructuralPartialEq for AccountEntry
Auto Trait Implementations§
impl Freeze for AccountEntry
impl RefUnwindSafe for AccountEntry
impl Send for AccountEntry
impl Sync for AccountEntry
impl Unpin for AccountEntry
impl UnwindSafe for AccountEntry
Blanket Implementations§
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