pub enum CurrencySymbol {
Ada,
NativeToken(MintingPolicyHash),
}
Expand description
Identifier of a currency, which could be either Ada (or tAda), or a native token represented by
it’s minting policy hash. A currency may be associated with multiple AssetClass
es.
Variants§
Ada
NativeToken(MintingPolicyHash)
Implementations§
Source§impl CurrencySymbol
impl CurrencySymbol
pub fn from_bytes(bytes: Vec<u8>) -> Result<Self, ConversionError>
pub fn is_ada(&self) -> bool
Trait Implementations§
Source§impl Clone for CurrencySymbol
impl Clone for CurrencySymbol
Source§fn clone(&self) -> CurrencySymbol
fn clone(&self) -> CurrencySymbol
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 CurrencySymbol
impl Debug for CurrencySymbol
Source§impl Display for CurrencySymbol
Serialize into hexadecimal string, or empty string if Ada
It returns lovelace
instead of the empty string when the alternate flag is used (e.g.: format!(“{:#}”, cs))
impl Display for CurrencySymbol
Serialize into hexadecimal string, or empty string if Ada
It returns lovelace
instead of the empty string when the alternate flag is used (e.g.: format!(“{:#}”, cs))
Source§impl FromStr for CurrencySymbol
impl FromStr for CurrencySymbol
Source§impl Hash for CurrencySymbol
impl Hash for CurrencySymbol
Source§impl IsPlutusData for CurrencySymbol
impl IsPlutusData for CurrencySymbol
fn to_plutus_data(&self) -> PlutusData
fn from_plutus_data(data: &PlutusData) -> Result<Self, PlutusDataError>
Source§impl Ord for CurrencySymbol
impl Ord for CurrencySymbol
Source§fn cmp(&self, other: &CurrencySymbol) -> Ordering
fn cmp(&self, other: &CurrencySymbol) -> 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 CurrencySymbol
impl PartialEq for CurrencySymbol
Source§impl PartialOrd for CurrencySymbol
impl PartialOrd for CurrencySymbol
impl Eq for CurrencySymbol
impl StructuralPartialEq for CurrencySymbol
Auto Trait Implementations§
impl Freeze for CurrencySymbol
impl RefUnwindSafe for CurrencySymbol
impl Send for CurrencySymbol
impl Sync for CurrencySymbol
impl Unpin for CurrencySymbol
impl UnwindSafe for CurrencySymbol
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