pub struct Informative {
pub long_name: String,
pub orig_lang_long_name: Option<String>,
pub short_names: Option<Vec<ShortName>>,
pub unit_multiplier: Option<u128>,
pub url: Option<Url>,
pub public_distributed_ledger_indication: Option<bool>,
pub underlying_asset_external_identifiers: Option<Vec<UnderlyingAssetExternalIdentifier>>,
}
Expand description
Basic information about the digital token.
Fields§
§long_name: String
§orig_lang_long_name: Option<String>
§short_names: Option<Vec<ShortName>>
§unit_multiplier: Option<u128>
§url: Option<Url>
§public_distributed_ledger_indication: Option<bool>
§underlying_asset_external_identifiers: Option<Vec<UnderlyingAssetExternalIdentifier>>
Trait Implementations§
Source§impl Clone for Informative
impl Clone for Informative
Source§fn clone(&self) -> Informative
fn clone(&self) -> Informative
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 Informative
impl Debug for Informative
Source§impl<'de> Deserialize<'de> for Informative
impl<'de> Deserialize<'de> for Informative
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 PartialEq for Informative
impl PartialEq for Informative
impl Eq for Informative
impl StructuralPartialEq for Informative
Auto Trait Implementations§
impl Freeze for Informative
impl RefUnwindSafe for Informative
impl Send for Informative
impl Sync for Informative
impl Unpin for Informative
impl UnwindSafe for Informative
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.