pub struct AccountEntry {
pub account_id: AccountId,
pub balance: Int64,
pub seq_num: SequenceNumber,
pub num_sub_entries: Uint32,
pub inflation_dest: Option<AccountId>,
pub flags: Uint32,
pub home_domain: String32,
pub thresholds: Thresholds,
pub signers: LimitedVarArray<Signer, MAX_SIGNERS>,
pub ext: AccountEntryExt,
}Expand description
Autogenerated definition for type AccountEntry
Fields§
§account_id: AccountId§balance: Int64§seq_num: SequenceNumber§num_sub_entries: Uint32§inflation_dest: Option<AccountId>§flags: Uint32§home_domain: String32§thresholds: Thresholds§signers: LimitedVarArray<Signer, MAX_SIGNERS>§ext: AccountEntryExtTrait 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 PartialEq for AccountEntry
impl PartialEq for AccountEntry
Source§impl XdrCodec for AccountEntry
impl XdrCodec for AccountEntry
Source§fn to_xdr_buffered(&self, write_stream: &mut WriteStream)
fn to_xdr_buffered(&self, write_stream: &mut WriteStream)
Encode the XDR to a write stream Read more
Source§fn from_xdr_buffered<T: AsRef<[u8]>>(
read_stream: &mut ReadStream<T>,
) -> Result<Self, DecodeError>
fn from_xdr_buffered<T: AsRef<[u8]>>( read_stream: &mut ReadStream<T>, ) -> Result<Self, DecodeError>
Decode the XDR from a read stream Read more
Source§fn from_xdr<T: AsRef<[u8]>>(input: T) -> Result<Self, DecodeError>
fn from_xdr<T: AsRef<[u8]>>(input: T) -> Result<Self, DecodeError>
Decode XDR provided as a reference to a byte vector Read more
Source§fn from_base64_xdr<T: AsRef<[u8]>>(input: T) -> Result<Self, DecodeError>
fn from_base64_xdr<T: AsRef<[u8]>>(input: T) -> Result<Self, DecodeError>
Decode this type from base64 encoded XDR Read more
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