pub enum BinaryPriceUpdateError {
HexDecode(FromHexError),
Base64Decode(DecodeError),
}
Expand description
Variants§
HexDecode(FromHexError)
Base64Decode(DecodeError)
Trait Implementations§
Source§impl Debug for BinaryPriceUpdateError
impl Debug for BinaryPriceUpdateError
Source§impl Display for BinaryPriceUpdateError
impl Display for BinaryPriceUpdateError
Source§impl Error for BinaryPriceUpdateError
impl Error for BinaryPriceUpdateError
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<DecodeError> for BinaryPriceUpdateError
impl From<DecodeError> for BinaryPriceUpdateError
Source§fn from(source: DecodeError) -> Self
fn from(source: DecodeError) -> Self
Converts to this type from the input type.
Source§impl From<FromHexError> for BinaryPriceUpdateError
impl From<FromHexError> for BinaryPriceUpdateError
Source§fn from(source: FromHexError) -> Self
fn from(source: FromHexError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BinaryPriceUpdateError
impl RefUnwindSafe for BinaryPriceUpdateError
impl Send for BinaryPriceUpdateError
impl Sync for BinaryPriceUpdateError
impl Unpin for BinaryPriceUpdateError
impl UnwindSafe for BinaryPriceUpdateError
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