pub struct AssetClass {
pub currency_symbol: CurrencySymbol,
pub token_name: TokenName,
}
Expand description
AssetClass is uniquely identifying a specific asset
Fields§
§currency_symbol: CurrencySymbol
§token_name: TokenName
Trait Implementations§
Source§impl Clone for AssetClass
impl Clone for AssetClass
Source§fn clone(&self) -> AssetClass
fn clone(&self) -> AssetClass
Returns a copy 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 AssetClass
impl Debug for AssetClass
Source§impl Display for AssetClass
Serialize into two hexadecimal strings divided by a . (e.g. aabbcc.001122)
It tries to decode the token name from UTF8 when the alternate flag is used (e.g.: format!(“{:#}”, ac)),
if failsed it prepends the hex value with 0x
impl Display for AssetClass
Serialize into two hexadecimal strings divided by a . (e.g. aabbcc.001122)
It tries to decode the token name from UTF8 when the alternate flag is used (e.g.: format!(“{:#}”, ac)),
if failsed it prepends the hex value with 0x
Source§impl FromStr for AssetClass
impl FromStr for AssetClass
Source§impl Hash for AssetClass
impl Hash for AssetClass
Source§impl IsPlutusData for AssetClass
impl IsPlutusData for AssetClass
fn to_plutus_data(&self) -> PlutusData
fn from_plutus_data(plutus_data: &PlutusData) -> Result<Self, PlutusDataError>where
Self: Sized,
Source§impl Ord for AssetClass
impl Ord for AssetClass
Source§fn cmp(&self, other: &AssetClass) -> Ordering
fn cmp(&self, other: &AssetClass) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AssetClass
impl PartialEq for AssetClass
Source§impl PartialOrd for AssetClass
impl PartialOrd for AssetClass
impl Eq for AssetClass
impl StructuralPartialEq for AssetClass
Auto Trait Implementations§
impl Freeze for AssetClass
impl RefUnwindSafe for AssetClass
impl Send for AssetClass
impl Sync for AssetClass
impl Unpin for AssetClass
impl UnwindSafe for AssetClass
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<T> FromStr for T
impl<T> FromStr for T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more