Struct soroban_env_guest::xdr::next::TrustLineEntry
pub struct TrustLineEntry {
pub account_id: AccountId,
pub asset: TrustLineAsset,
pub balance: i64,
pub limit: i64,
pub flags: u32,
pub ext: TrustLineEntryExt,
}
Fields§
§account_id: AccountId
§asset: TrustLineAsset
§balance: i64
§limit: i64
§flags: u32
§ext: TrustLineEntryExt
Trait Implementations§
§impl Clone for TrustLineEntry
impl Clone for TrustLineEntry
§fn clone(&self) -> TrustLineEntry
fn clone(&self) -> TrustLineEntry
Returns a copy 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 more§impl Debug for TrustLineEntry
impl Debug for TrustLineEntry
§impl Hash for TrustLineEntry
impl Hash for TrustLineEntry
§impl Ord for TrustLineEntry
impl Ord for TrustLineEntry
§impl PartialEq<TrustLineEntry> for TrustLineEntry
impl PartialEq<TrustLineEntry> for TrustLineEntry
§fn eq(&self, other: &TrustLineEntry) -> bool
fn eq(&self, other: &TrustLineEntry) -> bool
§impl PartialOrd<TrustLineEntry> for TrustLineEntry
impl PartialOrd<TrustLineEntry> for TrustLineEntry
§fn partial_cmp(&self, other: &TrustLineEntry) -> Option<Ordering>
fn partial_cmp(&self, other: &TrustLineEntry) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more