pub struct CandidRegisteredWalletIdentifier {
pub wallet_id: CandidWalletRegisterId,
pub wallet_identifier: WalletIdentifier,
pub registered_height: CandidBlockHeight,
}Fields§
§wallet_id: CandidWalletRegisterId§wallet_identifier: WalletIdentifier§registered_height: CandidBlockHeightTrait Implementations§
source§impl Clone for CandidRegisteredWalletIdentifier
impl Clone for CandidRegisteredWalletIdentifier
source§fn clone(&self) -> CandidRegisteredWalletIdentifier
fn clone(&self) -> CandidRegisteredWalletIdentifier
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<'de> Deserialize<'de> for CandidRegisteredWalletIdentifier
impl<'de> Deserialize<'de> for CandidRegisteredWalletIdentifier
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<CandidRegisteredWalletIdentifier> for RegisteredWalletIdentifier
impl From<CandidRegisteredWalletIdentifier> for RegisteredWalletIdentifier
source§fn from(
candid_registered_wallet_identifier: CandidRegisteredWalletIdentifier
) -> Self
fn from( candid_registered_wallet_identifier: CandidRegisteredWalletIdentifier ) -> Self
Converts to this type from the input type.
source§impl From<RegisteredWalletIdentifier> for CandidRegisteredWalletIdentifier
impl From<RegisteredWalletIdentifier> for CandidRegisteredWalletIdentifier
source§fn from(registered_wallet_identifier: RegisteredWalletIdentifier) -> Self
fn from(registered_wallet_identifier: RegisteredWalletIdentifier) -> Self
Converts to this type from the input type.
source§impl Ord for CandidRegisteredWalletIdentifier
impl Ord for CandidRegisteredWalletIdentifier
source§fn cmp(&self, other: &CandidRegisteredWalletIdentifier) -> Ordering
fn cmp(&self, other: &CandidRegisteredWalletIdentifier) -> 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 CandidRegisteredWalletIdentifier
impl PartialEq for CandidRegisteredWalletIdentifier
source§fn eq(&self, other: &CandidRegisteredWalletIdentifier) -> bool
fn eq(&self, other: &CandidRegisteredWalletIdentifier) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for CandidRegisteredWalletIdentifier
impl PartialOrd for CandidRegisteredWalletIdentifier
source§fn partial_cmp(
&self,
other: &CandidRegisteredWalletIdentifier
) -> Option<Ordering>
fn partial_cmp( &self, other: &CandidRegisteredWalletIdentifier ) -> 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 CandidRegisteredWalletIdentifier
impl StructuralPartialEq for CandidRegisteredWalletIdentifier
Auto Trait Implementations§
impl Freeze for CandidRegisteredWalletIdentifier
impl RefUnwindSafe for CandidRegisteredWalletIdentifier
impl Send for CandidRegisteredWalletIdentifier
impl Sync for CandidRegisteredWalletIdentifier
impl Unpin for CandidRegisteredWalletIdentifier
impl UnwindSafe for CandidRegisteredWalletIdentifier
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