pub struct PageResponseTokenMintBurnDataItem {
pub amount: String,
pub block_height: i64,
pub block_timestamp: i64,
pub mint_burn_type: MintBurnType,
pub token_address: String,
pub transaction_signature: String,
}Expand description
Token mint/burn event
JSON schema
{
"description": "Token mint/burn event",
"type": "object",
"required": [
"amount",
"blockHeight",
"blockTimestamp",
"mintBurnType",
"tokenAddress",
"transactionSignature"
],
"properties": {
"amount": {
"examples": [
"1000000"
],
"type": "string"
},
"blockHeight": {
"examples": [
123456789
],
"type": "integer",
"format": "int64"
},
"blockTimestamp": {
"examples": [
1710417600000
],
"type": "integer",
"format": "int64"
},
"mintBurnType": {
"$ref": "#/components/schemas/MintBurnType"
},
"tokenAddress": {
"examples": [
"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
],
"type": "string"
},
"transactionSignature": {
"examples": [
"3A7B9C1D2E4F6G8"
],
"type": "string"
}
}
}Fields§
§amount: String§block_height: i64§block_timestamp: i64§mint_burn_type: MintBurnType§token_address: String§transaction_signature: StringImplementations§
Trait Implementations§
Source§impl Clone for PageResponseTokenMintBurnDataItem
impl Clone for PageResponseTokenMintBurnDataItem
Source§fn clone(&self) -> PageResponseTokenMintBurnDataItem
fn clone(&self) -> PageResponseTokenMintBurnDataItem
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<'de> Deserialize<'de> for PageResponseTokenMintBurnDataItem
impl<'de> Deserialize<'de> for PageResponseTokenMintBurnDataItem
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<&PageResponseTokenMintBurnDataItem> for PageResponseTokenMintBurnDataItem
impl From<&PageResponseTokenMintBurnDataItem> for PageResponseTokenMintBurnDataItem
Source§fn from(value: &PageResponseTokenMintBurnDataItem) -> Self
fn from(value: &PageResponseTokenMintBurnDataItem) -> Self
Converts to this type from the input type.
Source§impl From<PageResponseTokenMintBurnDataItem> for PageResponseTokenMintBurnDataItem
impl From<PageResponseTokenMintBurnDataItem> for PageResponseTokenMintBurnDataItem
Source§fn from(value: PageResponseTokenMintBurnDataItem) -> Self
fn from(value: PageResponseTokenMintBurnDataItem) -> Self
Converts to this type from the input type.
Source§impl TryFrom<PageResponseTokenMintBurnDataItem> for PageResponseTokenMintBurnDataItem
impl TryFrom<PageResponseTokenMintBurnDataItem> for PageResponseTokenMintBurnDataItem
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: PageResponseTokenMintBurnDataItem,
) -> Result<Self, ConversionError>
fn try_from( value: PageResponseTokenMintBurnDataItem, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for PageResponseTokenMintBurnDataItem
impl RefUnwindSafe for PageResponseTokenMintBurnDataItem
impl Send for PageResponseTokenMintBurnDataItem
impl Sync for PageResponseTokenMintBurnDataItem
impl Unpin for PageResponseTokenMintBurnDataItem
impl UnsafeUnpin for PageResponseTokenMintBurnDataItem
impl UnwindSafe for PageResponseTokenMintBurnDataItem
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