pub enum SerializeError {
Io(Error),
InvalidMagic([u8; 8]),
UnsupportedVersion(u16),
InvalidKeyUtf8(usize, FromUtf8Error),
ValueTooLarge {
index: usize,
actual: u32,
limit: u32,
},
}Expand description
Errors returned by serialization / deserialization functions.
Variants§
Io(Error)
An I/O error occurred while reading or writing.
InvalidMagic([u8; 8])
The magic header did not match the expected value.
UnsupportedVersion(u16)
The format version is not supported.
InvalidKeyUtf8(usize, FromUtf8Error)
A key could not be decoded as valid UTF-8.
ValueTooLarge
An entry’s data length field exceeds the configured safety limit.
Trait Implementations§
Source§impl Debug for SerializeError
impl Debug for SerializeError
Source§impl Display for SerializeError
impl Display for SerializeError
Source§impl Error for SerializeError
impl Error for SerializeError
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()
Auto Trait Implementations§
impl !RefUnwindSafe for SerializeError
impl !UnwindSafe for SerializeError
impl Freeze for SerializeError
impl Send for SerializeError
impl Sync for SerializeError
impl Unpin for SerializeError
impl UnsafeUnpin for SerializeError
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