pub struct TransactionScanningAssetInfo {
pub decimals: Option<f64>,
pub logo_url: Option<String>,
pub name: Option<String>,
pub symbol: Option<String>,
pub type_: Option<String>,
}Expand description
Information about the moving asset in a transaction scan.
JSON schema
{
"title": "TransactionScanningAssetInfo",
"description": "Information about the moving asset in a transaction
scan.",
"type": "object",
"properties": {
"decimals": {
"type": "number"
},
"logo_url": {
"type": "string"
},
"name": {
"type": "string"
},
"symbol": {
"type": "string"
},
"type": {
"type": "string"
}
},
"x-stainless-model": "transactions.transaction_scanning_asset_info"
}Fields§
§decimals: Option<f64>§logo_url: Option<String>§name: Option<String>§symbol: Option<String>§type_: Option<String>Trait Implementations§
Source§impl Clone for TransactionScanningAssetInfo
impl Clone for TransactionScanningAssetInfo
Source§fn clone(&self) -> TransactionScanningAssetInfo
fn clone(&self) -> TransactionScanningAssetInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TransactionScanningAssetInfo
impl Debug for TransactionScanningAssetInfo
Source§impl<'de> Deserialize<'de> for TransactionScanningAssetInfo
impl<'de> Deserialize<'de> for TransactionScanningAssetInfo
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<&TransactionScanningAssetInfo> for TransactionScanningAssetInfo
impl From<&TransactionScanningAssetInfo> for TransactionScanningAssetInfo
Source§fn from(value: &TransactionScanningAssetInfo) -> Self
fn from(value: &TransactionScanningAssetInfo) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TransactionScanningAssetInfo
impl RefUnwindSafe for TransactionScanningAssetInfo
impl Send for TransactionScanningAssetInfo
impl Sync for TransactionScanningAssetInfo
impl Unpin for TransactionScanningAssetInfo
impl UnsafeUnpin for TransactionScanningAssetInfo
impl UnwindSafe for TransactionScanningAssetInfo
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