pub struct IcrcBalanceReport {
pub schema_version: u32,
pub ledger_canister_id: String,
pub account_owner: String,
pub subaccount_hex: Option<String>,
pub fetched_at: String,
pub source_endpoint: String,
pub fetched_by: String,
pub token_symbol: String,
pub decimals: u8,
pub balance: String,
}Expand description
IcrcBalanceReport
Serializable report for one generic ICRC account balance lookup.
Fields§
§schema_version: u32§ledger_canister_id: String§account_owner: String§subaccount_hex: Option<String>§fetched_at: String§source_endpoint: String§fetched_by: String§token_symbol: String§decimals: u8§balance: StringTrait Implementations§
Source§impl Clone for IcrcBalanceReport
impl Clone for IcrcBalanceReport
Source§fn clone(&self) -> IcrcBalanceReport
fn clone(&self) -> IcrcBalanceReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IcrcBalanceReport
impl Debug for IcrcBalanceReport
impl Eq for IcrcBalanceReport
Source§impl PartialEq for IcrcBalanceReport
impl PartialEq for IcrcBalanceReport
Source§impl Serialize for IcrcBalanceReport
impl Serialize for IcrcBalanceReport
impl StructuralPartialEq for IcrcBalanceReport
Auto Trait Implementations§
impl Freeze for IcrcBalanceReport
impl RefUnwindSafe for IcrcBalanceReport
impl Send for IcrcBalanceReport
impl Sync for IcrcBalanceReport
impl Unpin for IcrcBalanceReport
impl UnsafeUnpin for IcrcBalanceReport
impl UnwindSafe for IcrcBalanceReport
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