pub struct VaultMint {
pub id: String,
pub vault_id: u32,
pub vault_token: String,
pub symbol: String,
pub quantity: Decimal,
pub vault_tokens_minted: Decimal,
pub nav: Decimal,
pub timestamp: i64,
}Expand description
Vault mint event from history.
Fields§
§id: StringUnique identifier for the mint event.
vault_id: u32Vault ID.
vault_token: StringThe vault token asset.
symbol: StringThe symbol used for minting.
quantity: DecimalAmount deposited.
vault_tokens_minted: DecimalNumber of vault tokens received.
NAV at time of mint.
timestamp: i64Timestamp of the mint in milliseconds.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for VaultMint
impl<'de> Deserialize<'de> for VaultMint
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 VaultMint
impl RefUnwindSafe for VaultMint
impl Send for VaultMint
impl Sync for VaultMint
impl Unpin for VaultMint
impl UnsafeUnpin for VaultMint
impl UnwindSafe for VaultMint
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