pub struct AccountBalance {
pub account: Address,
pub token: Address,
pub balance: Balance,
pub modify_tx: TxHash,
}Fields§
§account: Address§token: Address§balance: Balance§modify_tx: TxHashImplementations§
Trait Implementations§
Source§impl Clone for AccountBalance
impl Clone for AccountBalance
Source§fn clone(&self) -> AccountBalance
fn clone(&self) -> AccountBalance
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 AccountBalance
impl Debug for AccountBalance
Source§impl<'de> Deserialize<'de> for AccountBalance
impl<'de> Deserialize<'de> for AccountBalance
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<AccountBalance> for AccountBalance
impl From<AccountBalance> for AccountBalance
Source§fn from(value: AccountBalance) -> Self
fn from(value: AccountBalance) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AccountBalance
impl PartialEq for AccountBalance
Source§impl Serialize for AccountBalance
impl Serialize for AccountBalance
impl StructuralPartialEq for AccountBalance
Auto Trait Implementations§
impl !Freeze for AccountBalance
impl RefUnwindSafe for AccountBalance
impl Send for AccountBalance
impl Sync for AccountBalance
impl Unpin for AccountBalance
impl UnwindSafe for AccountBalance
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