pub struct VaultMintHistoryParams {
pub subaccount_id: Option<i32>,
pub vault_id: Option<u32>,
pub limit: Option<u64>,
pub offset: Option<u64>,
}Expand description
Parameters for fetching vault mint history.
Fields§
§subaccount_id: Option<i32>Filter for a subaccount.
vault_id: Option<u32>Filter to a specific vault.
limit: Option<u64>Maximum number to return. Default 100, maximum 1000.
offset: Option<u64>Offset. Default 0.
Trait Implementations§
Source§impl Clone for VaultMintHistoryParams
impl Clone for VaultMintHistoryParams
Source§fn clone(&self) -> VaultMintHistoryParams
fn clone(&self) -> VaultMintHistoryParams
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 VaultMintHistoryParams
impl Debug for VaultMintHistoryParams
Source§impl Default for VaultMintHistoryParams
impl Default for VaultMintHistoryParams
Source§fn default() -> VaultMintHistoryParams
fn default() -> VaultMintHistoryParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VaultMintHistoryParams
impl<'de> Deserialize<'de> for VaultMintHistoryParams
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
Auto Trait Implementations§
impl Freeze for VaultMintHistoryParams
impl RefUnwindSafe for VaultMintHistoryParams
impl Send for VaultMintHistoryParams
impl Sync for VaultMintHistoryParams
impl Unpin for VaultMintHistoryParams
impl UnsafeUnpin for VaultMintHistoryParams
impl UnwindSafe for VaultMintHistoryParams
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