pub enum ErrorCode {
InvalidMagicOrVersion,
IndexOutOfBounds,
InvalidSignature,
InvalidUtf8,
MalformedEncoding,
}Expand description
Error codes as defined in spec Section 8.3.
Variants§
InvalidMagicOrVersion
E001: Invalid magic/version
IndexOutOfBounds
E002: Index out of bounds
InvalidSignature
E003: Invalid signature
InvalidUtf8
E004: Invalid UTF-8 encoding
MalformedEncoding
E005: Malformed varint/length/reserved bits/encoding
Implementations§
Trait Implementations§
impl Copy for ErrorCode
impl Eq for ErrorCode
impl StructuralPartialEq for ErrorCode
Auto Trait Implementations§
impl Freeze for ErrorCode
impl RefUnwindSafe for ErrorCode
impl Send for ErrorCode
impl Sync for ErrorCode
impl Unpin for ErrorCode
impl UnwindSafe for ErrorCode
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