pub enum BitcoinCodeError {
DeserializeAnyNotSupported,
InvalidBoolEncoding(u8),
LeftoverBytes,
DataTypeNotSupported(&'static str),
MethodNotSupported(&'static str),
SequenceMustHaveLength,
}Variants§
DeserializeAnyNotSupported
InvalidBoolEncoding(u8)
LeftoverBytes
DataTypeNotSupported(&'static str)
MethodNotSupported(&'static str)
SequenceMustHaveLength
Implementations§
Trait Implementations§
Source§impl Clone for BitcoinCodeError
impl Clone for BitcoinCodeError
Source§fn clone(&self) -> BitcoinCodeError
fn clone(&self) -> BitcoinCodeError
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 BitcoinCodeError
impl Debug for BitcoinCodeError
Source§impl PartialEq for BitcoinCodeError
impl PartialEq for BitcoinCodeError
impl Copy for BitcoinCodeError
impl StructuralPartialEq for BitcoinCodeError
Auto Trait Implementations§
impl Freeze for BitcoinCodeError
impl RefUnwindSafe for BitcoinCodeError
impl Send for BitcoinCodeError
impl Sync for BitcoinCodeError
impl Unpin for BitcoinCodeError
impl UnsafeUnpin for BitcoinCodeError
impl UnwindSafe for BitcoinCodeError
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