Enum odra_modules::cep78::modalities::TokenIdentifier

source ·
pub enum TokenIdentifier {
    Index(u64),
    Hash(String),
}

Variants§

§

Index(u64)

§

Hash(String)

Implementations§

source§

impl TokenIdentifier

source

pub fn new_index(index: u64) -> Self

source

pub fn new_hash(hash: String) -> Self

source

pub fn get_index(&self) -> Option<u64>

source

pub fn get_hash(&self) -> Option<String>

source

pub fn get_dictionary_item_key(&self) -> String

Trait Implementations§

source§

impl CLTyped for TokenIdentifier

source§

fn cl_type() -> CLType

The CLType of Self.
source§

impl Clone for TokenIdentifier

source§

fn clone(&self) -> TokenIdentifier

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for TokenIdentifier

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl FromBytes for TokenIdentifier

source§

fn from_bytes(bytes: &[u8]) -> Result<(Self, &[u8]), Error>

Deserializes the slice into Self.
source§

fn from_vec(bytes: Vec<u8>) -> Result<(Self, Vec<u8>), Error>

Deserializes the Vec<u8> into Self.
source§

impl HasEvents for TokenIdentifier

source§

fn events() -> Vec<Event>

Returns a list of Events used by the contract.
source§

fn event_schemas() -> BTreeMap<String, Schema>

Returns a map of event schemas used by the contract.
source§

impl NamedCLTyped for TokenIdentifier

source§

fn ty() -> NamedCLType

Returns the NamedCLType of the implementing type.
source§

impl PartialEq for TokenIdentifier

source§

fn eq(&self, other: &TokenIdentifier) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl SchemaCustomTypes for TokenIdentifier

source§

fn schema_types() -> Vec<Option<CustomType>>

Returns a vector of optional CustomTypes.
source§

impl ToBytes for TokenIdentifier

source§

fn to_bytes(&self) -> Result<Vec<u8>, Error>

Serializes &self to a Vec<u8>.
source§

fn serialized_length(&self) -> usize

Returns the length of the Vec<u8> which would be returned from a successful call to to_bytes() or into_bytes(). The data is not actually serialized, so this call is relatively cheap.
source§

fn into_bytes(self) -> Result<Vec<u8>, Error>
where Self: Sized,

Consumes self and serializes to a Vec<u8>.
source§

fn write_bytes(&self, writer: &mut Vec<u8>) -> Result<(), Error>

Writes &self into a mutable writer.
source§

impl ToString for TokenIdentifier

source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl Eq for TokenIdentifier

source§

impl SchemaCustomElement for TokenIdentifier

source§

impl StructuralPartialEq for TokenIdentifier

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> DynClone for T
where T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

source§

impl<T> EntrypointArgument for T
where T: CLTyped + ToBytes,

source§

fn is_required() -> bool

Returns true if the argument is required.
source§

fn cl_type() -> CLType

Returns the CLType of the argument.
source§

fn insert_runtime_arg(self, name: &str, args: &mut RuntimeArgs)

Inserts the argument into the runtime args.
source§

fn unwrap(value: Option<T>, env: &ContractEnv) -> T

Unwraps the argument from an Option.
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> SchemaErrors for T

source§

fn schema_errors() -> Vec<UserError>

Returns a vector of UserErrors.
source§

impl<T> SchemaEvents for T

source§

fn schema_events() -> Vec<Event>

Returns a vector of Events.
source§

fn custom_types() -> Vec<Option<CustomType>>

Returns a vector of CustomTypes. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.