Struct soroban_env_guest::xdr::ClaimableBalanceEntry
pub struct ClaimableBalanceEntry {
pub balance_id: ClaimableBalanceId,
pub claimants: VecM<Claimant, 10>,
pub asset: Asset,
pub amount: i64,
pub ext: ClaimableBalanceEntryExt,
}
Fields§
§balance_id: ClaimableBalanceId
§claimants: VecM<Claimant, 10>
§asset: Asset
§amount: i64
§ext: ClaimableBalanceEntryExt
Trait Implementations§
§impl Clone for ClaimableBalanceEntry
impl Clone for ClaimableBalanceEntry
§fn clone(&self) -> ClaimableBalanceEntry
fn clone(&self) -> ClaimableBalanceEntry
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 ClaimableBalanceEntry
impl Debug for ClaimableBalanceEntry
§impl Hash for ClaimableBalanceEntry
impl Hash for ClaimableBalanceEntry
§impl Ord for ClaimableBalanceEntry
impl Ord for ClaimableBalanceEntry
§fn cmp(&self, other: &ClaimableBalanceEntry) -> Ordering
fn cmp(&self, other: &ClaimableBalanceEntry) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
§impl PartialEq<ClaimableBalanceEntry> for ClaimableBalanceEntry
impl PartialEq<ClaimableBalanceEntry> for ClaimableBalanceEntry
§fn eq(&self, other: &ClaimableBalanceEntry) -> bool
fn eq(&self, other: &ClaimableBalanceEntry) -> bool
§impl PartialOrd<ClaimableBalanceEntry> for ClaimableBalanceEntry
impl PartialOrd<ClaimableBalanceEntry> for ClaimableBalanceEntry
§fn partial_cmp(&self, other: &ClaimableBalanceEntry) -> Option<Ordering>
fn partial_cmp(&self, other: &ClaimableBalanceEntry) -> 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