pub struct CandidSnapshotCursor {
pub max_activated_wallet_registry_seq_id: u64,
pub max_activated_secret_vault_seq_id: u64,
pub max_activated_balance_vault_seq_id: u64,
pub vault_count: Nat,
pub max_wallet_id: Option<CandidWalletRegisterId>,
pub max_asset_id: Option<CandidAssetId>,
pub max_spot_market_id: Option<CandidSpotMarketId>,
}Fields§
§max_activated_wallet_registry_seq_id: u64The snapshot max activated wallet registry seq id
max_activated_secret_vault_seq_id: u64The snapshot max activated secret vault seq id
max_activated_balance_vault_seq_id: u64The snapshot max activated balance vault seq id
vault_count: NatThe snapshot vault count Includes core registry,wallet registry,secret vault, and balance vault.
max_wallet_id: Option<CandidWalletRegisterId>The snapshot max wallet id
max_asset_id: Option<CandidAssetId>The snapshot max asset id
max_spot_market_id: Option<CandidSpotMarketId>The snapshot max spot market id
Trait Implementations§
source§impl CandidType for CandidSnapshotCursor
impl CandidType for CandidSnapshotCursor
source§impl Clone for CandidSnapshotCursor
impl Clone for CandidSnapshotCursor
source§fn clone(&self) -> CandidSnapshotCursor
fn clone(&self) -> CandidSnapshotCursor
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 CandidSnapshotCursor
impl Debug for CandidSnapshotCursor
source§impl<'de> Deserialize<'de> for CandidSnapshotCursor
impl<'de> Deserialize<'de> for CandidSnapshotCursor
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<CandidSnapshotCursor> for SnapshotCursor
impl From<CandidSnapshotCursor> for SnapshotCursor
source§fn from(candid_snapshot_cursor: CandidSnapshotCursor) -> Self
fn from(candid_snapshot_cursor: CandidSnapshotCursor) -> Self
Converts to this type from the input type.
source§impl From<SnapshotCursor> for CandidSnapshotCursor
impl From<SnapshotCursor> for CandidSnapshotCursor
source§fn from(snapshot_cursor: SnapshotCursor) -> Self
fn from(snapshot_cursor: SnapshotCursor) -> Self
Converts to this type from the input type.
source§impl PartialEq for CandidSnapshotCursor
impl PartialEq for CandidSnapshotCursor
source§fn eq(&self, other: &CandidSnapshotCursor) -> bool
fn eq(&self, other: &CandidSnapshotCursor) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for CandidSnapshotCursor
impl StructuralPartialEq for CandidSnapshotCursor
Auto Trait Implementations§
impl Freeze for CandidSnapshotCursor
impl RefUnwindSafe for CandidSnapshotCursor
impl Send for CandidSnapshotCursor
impl Sync for CandidSnapshotCursor
impl Unpin for CandidSnapshotCursor
impl UnwindSafe for CandidSnapshotCursor
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