pub struct TokenName(pub LedgerBytes);
Expand description
Name of a token. This can be any arbitrary bytearray
Tuple Fields§
§0: LedgerBytes
Implementations§
Source§impl TokenName
impl TokenName
pub fn is_empty(&self) -> bool
pub fn from_bytes(bytes: Vec<u8>) -> Result<Self, ConversionError>
Sourcepub fn from_string(str: &str) -> Result<Self, ConversionError>
pub fn from_string(str: &str) -> Result<Self, ConversionError>
Convert a UTF8 string into a TokenName (use from_str to convert from a hexadecimal string)
Sourcepub fn try_into_string(self) -> Result<String, FromUtf8Error>
pub fn try_into_string(self) -> Result<String, FromUtf8Error>
Convert TokenName to string if it is a valid UTF8 bytestring
Trait Implementations§
Source§impl Display for TokenName
Serialize into a hexadecimal string
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 TokenName
Serialize into a hexadecimal string
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 IsPlutusData for TokenName
impl IsPlutusData for TokenName
fn to_plutus_data(&self) -> PlutusData
fn from_plutus_data(data: &PlutusData) -> Result<Self, PlutusDataError>
Source§impl Ord for TokenName
impl Ord for TokenName
Source§impl PartialOrd for TokenName
impl PartialOrd for TokenName
Source§impl TryFromPLA<TokenName> for AssetName
impl TryFromPLA<TokenName> for AssetName
fn try_from_pla(val: &TokenName) -> Result<Self, TryFromPLAError>
impl Eq for TokenName
impl StructuralPartialEq for TokenName
Auto Trait Implementations§
impl Freeze for TokenName
impl RefUnwindSafe for TokenName
impl Send for TokenName
impl Sync for TokenName
impl Unpin for TokenName
impl UnwindSafe for TokenName
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