pub struct TokenTransferTotal {
pub total: i64,
}Expand description
Token transfer total count
JSON schema
{
"description": "Token transfer total count",
"type": "object",
"required": [
"total"
],
"properties": {
"total": {
"examples": [
123456
],
"type": "integer",
"format": "int64"
}
}
}Fields§
§total: i64Implementations§
Source§impl TokenTransferTotal
impl TokenTransferTotal
pub fn builder() -> TokenTransferTotal
Trait Implementations§
Source§impl Clone for TokenTransferTotal
impl Clone for TokenTransferTotal
Source§fn clone(&self) -> TokenTransferTotal
fn clone(&self) -> TokenTransferTotal
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 TokenTransferTotal
impl Debug for TokenTransferTotal
Source§impl<'de> Deserialize<'de> for TokenTransferTotal
impl<'de> Deserialize<'de> for TokenTransferTotal
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<&TokenTransferTotal> for TokenTransferTotal
impl From<&TokenTransferTotal> for TokenTransferTotal
Source§fn from(value: &TokenTransferTotal) -> Self
fn from(value: &TokenTransferTotal) -> Self
Converts to this type from the input type.
Source§impl From<TokenTransferTotal> for TokenTransferTotal
impl From<TokenTransferTotal> for TokenTransferTotal
Source§fn from(value: TokenTransferTotal) -> Self
fn from(value: TokenTransferTotal) -> Self
Converts to this type from the input type.
Source§impl Serialize for TokenTransferTotal
impl Serialize for TokenTransferTotal
Source§impl TryFrom<TokenTransferTotal> for TokenTransferTotal
impl TryFrom<TokenTransferTotal> for TokenTransferTotal
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: TokenTransferTotal) -> Result<Self, ConversionError>
fn try_from(value: TokenTransferTotal) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for TokenTransferTotal
impl RefUnwindSafe for TokenTransferTotal
impl Send for TokenTransferTotal
impl Sync for TokenTransferTotal
impl Unpin for TokenTransferTotal
impl UnsafeUnpin for TokenTransferTotal
impl UnwindSafe for TokenTransferTotal
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