pub struct TrustLineEntry {
pub accountID: AccountID,
pub asset: Asset,
pub balance: int64,
pub limit: int64,
pub flags: uint32,
pub ext: TrustLineEntryExt,
}
Fields§
§accountID: AccountID
§asset: Asset
§balance: int64
§limit: int64
§flags: uint32
§ext: TrustLineEntryExt
Trait Implementations§
Source§impl Clone for TrustLineEntry
impl Clone for TrustLineEntry
Source§fn clone(&self) -> TrustLineEntry
fn clone(&self) -> TrustLineEntry
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 TrustLineEntry
impl Debug for TrustLineEntry
Source§impl<Out: Write> Pack<Out> for TrustLineEntry
impl<Out: Write> Pack<Out> for TrustLineEntry
Source§impl PartialEq for TrustLineEntry
impl PartialEq for TrustLineEntry
Source§impl<In: Read> Unpack<In> for TrustLineEntry
impl<In: Read> Unpack<In> for TrustLineEntry
impl Copy for TrustLineEntry
impl Eq for TrustLineEntry
impl StructuralPartialEq for TrustLineEntry
Auto Trait Implementations§
impl Freeze for TrustLineEntry
impl RefUnwindSafe for TrustLineEntry
impl Send for TrustLineEntry
impl Sync for TrustLineEntry
impl Unpin for TrustLineEntry
impl UnwindSafe for TrustLineEntry
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