pub struct ChainAssetSummary {
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_: StringType of the message.
id: i32The unique identifier for the asset entry.
symbol: StringInternal mapped symbol for a specific asset.
asset_type: Stringhe asset class/type.
name: StringThe full name of the asset, e.g. Bitcoin.
logo_url: StringThe 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 Clone for ChainAssetSummary
impl Clone for ChainAssetSummary
Source§fn clone(&self) -> ChainAssetSummary
fn clone(&self) -> ChainAssetSummary
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 ChainAssetSummary
impl Debug for ChainAssetSummary
Source§impl<'de> Deserialize<'de> for ChainAssetSummary
impl<'de> Deserialize<'de> for ChainAssetSummary
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 ChainAssetSummary
impl RefUnwindSafe for ChainAssetSummary
impl Send for ChainAssetSummary
impl Sync for ChainAssetSummary
impl Unpin for ChainAssetSummary
impl UnsafeUnpin for ChainAssetSummary
impl UnwindSafe for ChainAssetSummary
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