#[repr(i32)]pub enum ECurrencyCode {
Show 47 variants
Invalid = 0,
USD = 1,
GBP = 2,
EUR = 3,
CHF = 4,
RUB = 5,
PLN = 6,
BRL = 7,
JPY = 8,
NOK = 9,
IDR = 10,
MYR = 11,
PHP = 12,
SGD = 13,
THB = 14,
VND = 15,
KRW = 16,
TRY = 17,
UAH = 18,
MXN = 19,
CAD = 20,
AUD = 21,
NZD = 22,
CNY = 23,
INR = 24,
CLP = 25,
PEN = 26,
COP = 27,
ZAR = 28,
HKD = 29,
TWD = 30,
SAR = 31,
AED = 32,
ARS = 34,
ILS = 35,
BYN = 36,
KZT = 37,
KWD = 38,
QAR = 39,
CRC = 40,
UYU = 41,
BGN = 42,
HRK = 43,
CZK = 44,
DKK = 45,
HUF = 46,
RON = 47,
}Variants§
Invalid = 0
USD = 1
GBP = 2
EUR = 3
CHF = 4
RUB = 5
PLN = 6
BRL = 7
JPY = 8
NOK = 9
IDR = 10
MYR = 11
PHP = 12
SGD = 13
THB = 14
VND = 15
KRW = 16
TRY = 17
UAH = 18
MXN = 19
CAD = 20
AUD = 21
NZD = 22
CNY = 23
INR = 24
CLP = 25
PEN = 26
COP = 27
ZAR = 28
HKD = 29
TWD = 30
SAR = 31
AED = 32
ARS = 34
ILS = 35
BYN = 36
KZT = 37
KWD = 38
QAR = 39
CRC = 40
UYU = 41
BGN = 42
HRK = 43
CZK = 44
DKK = 45
HUF = 46
RON = 47
Implementations§
Source§impl ECurrencyCode
impl ECurrencyCode
pub fn from_i32(val: i32) -> Option<ECurrencyCode>
Trait Implementations§
Source§impl Clone for ECurrencyCode
impl Clone for ECurrencyCode
Source§fn clone(&self) -> ECurrencyCode
fn clone(&self) -> ECurrencyCode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ECurrencyCode
impl Debug for ECurrencyCode
Source§impl Hash for ECurrencyCode
impl Hash for ECurrencyCode
Source§impl PartialEq for ECurrencyCode
impl PartialEq for ECurrencyCode
Source§fn eq(&self, other: &ECurrencyCode) -> bool
fn eq(&self, other: &ECurrencyCode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ECurrencyCode
impl Eq for ECurrencyCode
impl StructuralPartialEq for ECurrencyCode
Auto Trait Implementations§
impl Freeze for ECurrencyCode
impl RefUnwindSafe for ECurrencyCode
impl Send for ECurrencyCode
impl Sync for ECurrencyCode
impl Unpin for ECurrencyCode
impl UnsafeUnpin for ECurrencyCode
impl UnwindSafe for ECurrencyCode
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§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