pub enum UnValueDataError {
NonMapConstructor,
NonByteStringConstructor,
NonIntegerConstructor,
InvalidKey,
EmptyInnerMap,
CurrencyNotAscending,
TokenNotAscending,
InvalidQuantity,
}Variants§
NonMapConstructor
NonByteStringConstructor
NonIntegerConstructor
InvalidKey
EmptyInnerMap
CurrencyNotAscending
TokenNotAscending
InvalidQuantity
Trait Implementations§
Source§impl Debug for UnValueDataError
impl Debug for UnValueDataError
Source§impl Display for UnValueDataError
impl Display for UnValueDataError
Source§impl Error for UnValueDataError
impl Error for UnValueDataError
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 From<UnValueDataError> for ValueError
impl From<UnValueDataError> for ValueError
Source§fn from(source: UnValueDataError) -> Self
fn from(source: UnValueDataError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for UnValueDataError
impl RefUnwindSafe for UnValueDataError
impl Send for UnValueDataError
impl Sync for UnValueDataError
impl Unpin for UnValueDataError
impl UnsafeUnpin for UnValueDataError
impl UnwindSafe for UnValueDataError
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