pub enum ReadError {
Io(ReadError),
InvalidUtf8Encoding(Utf8Error),
PointerSizedReadError,
PreallocationSizeLimit {
needed: usize,
limit: usize,
},
InvalidTagEncoding(usize),
InvalidBoolEncoding(u8),
LengthEncodingOverflow(&'static str),
InvalidValue(&'static str),
InvalidCharLead(u8),
Custom(&'static str),
UnalignedPointerRead,
TagEncodingOverflow(&'static str),
}Variants§
Io(ReadError)
InvalidUtf8Encoding(Utf8Error)
PointerSizedReadError
PreallocationSizeLimit
InvalidTagEncoding(usize)
InvalidBoolEncoding(u8)
LengthEncodingOverflow(&'static str)
InvalidValue(&'static str)
InvalidCharLead(u8)
Custom(&'static str)
UnalignedPointerRead
TagEncodingOverflow(&'static str)
Trait Implementations§
Source§impl Error for ReadError
impl Error for ReadError
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<PreallocationError> for ReadError
impl From<PreallocationError> for ReadError
Source§fn from(_: PreallocationError) -> ReadError
fn from(_: PreallocationError) -> ReadError
Converts to this type from the input type.
Source§impl From<TagEncodingOverflow> for ReadError
impl From<TagEncodingOverflow> for ReadError
Source§fn from(err: TagEncodingOverflow) -> Self
fn from(err: TagEncodingOverflow) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ReadError
impl !RefUnwindSafe for ReadError
impl Send for ReadError
impl Sync for ReadError
impl Unpin for ReadError
impl !UnwindSafe for ReadError
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