pub struct CCChainAssetSummary {
pub type_: String,
pub id: i32,
pub symbol: String,
pub asset_type: String,
pub name: String,
pub logo_url: String,
pub launch_date: Option<i64>,
}
Fields§
§type_: String
Type of the message.
id: i32
The unique identifier for the asset entry.
symbol: String
Internal mapped symbol for a specific asset.
asset_type: String
he asset class/type.
name: String
The full name of the asset, e.g. Bitcoin.
logo_url: String
The image that appears when you see this asset.
launch_date: Option<i64>
The launch date of the asset is indicated as (yyyy-mm-dd). However, if the asset was initially established as a token before being integrated into a blockchain, the launch date is reset to the creation of the first block when the blockchain is launched for the token.
Trait Implementations§
Source§impl Debug for CCChainAssetSummary
impl Debug for CCChainAssetSummary
Source§impl<'de> Deserialize<'de> for CCChainAssetSummary
impl<'de> Deserialize<'de> for CCChainAssetSummary
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 CCChainAssetSummary
impl RefUnwindSafe for CCChainAssetSummary
impl Send for CCChainAssetSummary
impl Sync for CCChainAssetSummary
impl Unpin for CCChainAssetSummary
impl UnwindSafe for CCChainAssetSummary
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