Enum cdk::nuts::nut00::CurrencyUnit
source · pub enum CurrencyUnit {
Sat,
Msat,
Usd,
Custom(String),
}Expand description
Currency Unit
Variants§
Trait Implementations§
source§impl Clone for CurrencyUnit
impl Clone for CurrencyUnit
source§fn clone(&self) -> CurrencyUnit
fn clone(&self) -> CurrencyUnit
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 CurrencyUnit
impl Debug for CurrencyUnit
source§impl Default for CurrencyUnit
impl Default for CurrencyUnit
source§fn default() -> CurrencyUnit
fn default() -> CurrencyUnit
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CurrencyUnit
impl<'de> Deserialize<'de> for CurrencyUnit
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 Display for CurrencyUnit
impl Display for CurrencyUnit
source§impl<S> From<S> for CurrencyUnit
impl<S> From<S> for CurrencyUnit
source§impl Hash for CurrencyUnit
impl Hash for CurrencyUnit
source§impl PartialEq for CurrencyUnit
impl PartialEq for CurrencyUnit
source§fn eq(&self, other: &CurrencyUnit) -> bool
fn eq(&self, other: &CurrencyUnit) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for CurrencyUnit
impl Serialize for CurrencyUnit
impl Eq for CurrencyUnit
impl StructuralPartialEq for CurrencyUnit
Auto Trait Implementations§
impl Freeze for CurrencyUnit
impl RefUnwindSafe for CurrencyUnit
impl Send for CurrencyUnit
impl Sync for CurrencyUnit
impl Unpin for CurrencyUnit
impl UnwindSafe for CurrencyUnit
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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