pub enum CurrencyCodeError {
InvalidLength,
NotAlphabetic,
NotUppercase,
}Expand description
Errors returned while constructing currency codes.
Variants§
InvalidLength
Currency codes must be exactly three bytes long.
NotAlphabetic
Currency codes must contain only ASCII alphabetic bytes.
NotUppercase
Currency codes must be uppercase.
Trait Implementations§
Source§impl Clone for CurrencyCodeError
impl Clone for CurrencyCodeError
Source§fn clone(&self) -> CurrencyCodeError
fn clone(&self) -> CurrencyCodeError
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 CurrencyCodeError
impl Debug for CurrencyCodeError
Source§impl Display for CurrencyCodeError
impl Display for CurrencyCodeError
Source§impl Error for CurrencyCodeError
impl Error for CurrencyCodeError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for CurrencyCodeError
impl PartialEq for CurrencyCodeError
impl Copy for CurrencyCodeError
impl Eq for CurrencyCodeError
impl StructuralPartialEq for CurrencyCodeError
Auto Trait Implementations§
impl Freeze for CurrencyCodeError
impl RefUnwindSafe for CurrencyCodeError
impl Send for CurrencyCodeError
impl Sync for CurrencyCodeError
impl Unpin for CurrencyCodeError
impl UnsafeUnpin for CurrencyCodeError
impl UnwindSafe for CurrencyCodeError
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