Struct ex3_node_types::transaction::CandidDeposit
source · pub struct CandidDeposit {
pub identifier: CandidDepositIdentifier,
pub from_wallet: CandidWalletRegisterId,
pub amount: CandidAssetAmount,
}Expand description
Deposit
Fields§
§identifier: CandidDepositIdentifier§from_wallet: CandidWalletRegisterId§amount: CandidAssetAmountTrait Implementations§
source§impl CandidType for CandidDeposit
impl CandidType for CandidDeposit
source§impl Clone for CandidDeposit
impl Clone for CandidDeposit
source§fn clone(&self) -> CandidDeposit
fn clone(&self) -> CandidDeposit
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 moresource§impl Debug for CandidDeposit
impl Debug for CandidDeposit
source§impl<'de> Deserialize<'de> for CandidDeposit
impl<'de> Deserialize<'de> for CandidDeposit
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<CandidDeposit> for Deposit
impl From<CandidDeposit> for Deposit
source§fn from(deposit: CandidDeposit) -> Self
fn from(deposit: CandidDeposit) -> Self
Converts to this type from the input type.
source§impl From<Deposit> for CandidDeposit
impl From<Deposit> for CandidDeposit
source§impl Hash for CandidDeposit
impl Hash for CandidDeposit
source§impl Ord for CandidDeposit
impl Ord for CandidDeposit
source§fn cmp(&self, other: &CandidDeposit) -> Ordering
fn cmp(&self, other: &CandidDeposit) -> 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
source§impl PartialEq for CandidDeposit
impl PartialEq for CandidDeposit
source§fn eq(&self, other: &CandidDeposit) -> bool
fn eq(&self, other: &CandidDeposit) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for CandidDeposit
impl PartialOrd for CandidDeposit
source§fn partial_cmp(&self, other: &CandidDeposit) -> Option<Ordering>
fn partial_cmp(&self, other: &CandidDeposit) -> 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 moreimpl Eq for CandidDeposit
impl StructuralPartialEq for CandidDeposit
Auto Trait Implementations§
impl RefUnwindSafe for CandidDeposit
impl Send for CandidDeposit
impl Sync for CandidDeposit
impl Unpin for CandidDeposit
impl UnwindSafe for CandidDeposit
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