#[repr(u8)]pub enum BdecodeError {
NoError = 0,
ExpectedDigit = 1,
ExpectedColon = 2,
UnexpectedEof = 3,
ExpectedValue = 4,
DepthExceeded = 5,
LimitExceeded = 6,
Overflow = 7,
}Variants§
NoError = 0
ExpectedDigit = 1
ExpectedColon = 2
UnexpectedEof = 3
ExpectedValue = 4
DepthExceeded = 5
LimitExceeded = 6
Overflow = 7
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BdecodeError
impl RefUnwindSafe for BdecodeError
impl Send for BdecodeError
impl Sync for BdecodeError
impl Unpin for BdecodeError
impl UnwindSafe for BdecodeError
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