pub enum SandboxCurrency {
RUB,
USD,
EUR,
GBP,
HKD,
CHF,
JPY,
CNY,
_TRY,
}Expand description
Variants§
Trait Implementations§
Source§impl Clone for SandboxCurrency
impl Clone for SandboxCurrency
Source§fn clone(&self) -> SandboxCurrency
fn clone(&self) -> SandboxCurrency
Returns a duplicate 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 SandboxCurrency
impl Debug for SandboxCurrency
Source§impl<'de> Deserialize<'de> for SandboxCurrency
impl<'de> Deserialize<'de> for SandboxCurrency
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 Hash for SandboxCurrency
impl Hash for SandboxCurrency
Source§impl Ord for SandboxCurrency
impl Ord for SandboxCurrency
Source§fn cmp(&self, other: &SandboxCurrency) -> Ordering
fn cmp(&self, other: &SandboxCurrency) -> 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 SandboxCurrency
impl PartialEq for SandboxCurrency
Source§impl PartialOrd for SandboxCurrency
impl PartialOrd for SandboxCurrency
Source§impl Serialize for SandboxCurrency
impl Serialize for SandboxCurrency
impl Copy for SandboxCurrency
impl Eq for SandboxCurrency
impl StructuralPartialEq for SandboxCurrency
Auto Trait Implementations§
impl Freeze for SandboxCurrency
impl RefUnwindSafe for SandboxCurrency
impl Send for SandboxCurrency
impl Sync for SandboxCurrency
impl Unpin for SandboxCurrency
impl UnwindSafe for SandboxCurrency
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.