pub enum EncodeError {
ValueTooLong,
}
Variants§
ValueTooLong
The value is too long. On 64-bit machines, values must be shorter than 18.4 exabytes in length. On 32-bit machines, values must be less than 4 gigabytes long.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EncodeError
impl RefUnwindSafe for EncodeError
impl Send for EncodeError
impl Sync for EncodeError
impl Unpin for EncodeError
impl UnwindSafe for EncodeError
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