pub struct CandidConfirmedDeposit {
pub seq_id: CandidDepositId,
pub deposit: CandidDeposit,
pub confirmed_at: TimeInNs,
}Expand description
CandidConfirmedDeposit
Fields§
§seq_id: CandidDepositId§deposit: CandidDeposit§confirmed_at: TimeInNsTrait Implementations§
source§impl CandidType for CandidConfirmedDeposit
impl CandidType for CandidConfirmedDeposit
source§impl Clone for CandidConfirmedDeposit
impl Clone for CandidConfirmedDeposit
source§fn clone(&self) -> CandidConfirmedDeposit
fn clone(&self) -> CandidConfirmedDeposit
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 CandidConfirmedDeposit
impl Debug for CandidConfirmedDeposit
source§impl<'de> Deserialize<'de> for CandidConfirmedDeposit
impl<'de> Deserialize<'de> for CandidConfirmedDeposit
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<CandidConfirmedDeposit> for ConfirmedDeposit
impl From<CandidConfirmedDeposit> for ConfirmedDeposit
source§fn from(deposit: CandidConfirmedDeposit) -> Self
fn from(deposit: CandidConfirmedDeposit) -> Self
Converts to this type from the input type.
source§impl From<ConfirmedDeposit> for CandidConfirmedDeposit
impl From<ConfirmedDeposit> for CandidConfirmedDeposit
source§fn from(deposit: ConfirmedDeposit) -> Self
fn from(deposit: ConfirmedDeposit) -> Self
Converts to this type from the input type.
source§impl Hash for CandidConfirmedDeposit
impl Hash for CandidConfirmedDeposit
source§impl Ord for CandidConfirmedDeposit
impl Ord for CandidConfirmedDeposit
source§fn cmp(&self, other: &CandidConfirmedDeposit) -> Ordering
fn cmp(&self, other: &CandidConfirmedDeposit) -> 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 CandidConfirmedDeposit
impl PartialEq for CandidConfirmedDeposit
source§fn eq(&self, other: &CandidConfirmedDeposit) -> bool
fn eq(&self, other: &CandidConfirmedDeposit) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for CandidConfirmedDeposit
impl PartialOrd for CandidConfirmedDeposit
source§fn partial_cmp(&self, other: &CandidConfirmedDeposit) -> Option<Ordering>
fn partial_cmp(&self, other: &CandidConfirmedDeposit) -> 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 CandidConfirmedDeposit
impl StructuralEq for CandidConfirmedDeposit
impl StructuralPartialEq for CandidConfirmedDeposit
Auto Trait Implementations§
impl RefUnwindSafe for CandidConfirmedDeposit
impl Send for CandidConfirmedDeposit
impl Sync for CandidConfirmedDeposit
impl Unpin for CandidConfirmedDeposit
impl UnwindSafe for CandidConfirmedDeposit
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