pub enum EncodeToSliceError<E> {
InsufficientBuffer(InsufficientBuffer),
Encode(E),
}Expand description
Error from Encode::encode_to_slice.
Variants§
InsufficientBuffer(InsufficientBuffer)
The slice was smaller than Encode::encoded_size; carries both counts.
Encode(E)
The value itself failed to encode (or to size).
Trait Implementations§
Source§impl<E: Clone> Clone for EncodeToSliceError<E>
impl<E: Clone> Clone for EncodeToSliceError<E>
Source§fn clone(&self) -> EncodeToSliceError<E>
fn clone(&self) -> EncodeToSliceError<E>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<E: Copy> Copy for EncodeToSliceError<E>
Source§impl<E: Debug> Debug for EncodeToSliceError<E>
impl<E: Debug> Debug for EncodeToSliceError<E>
Source§impl<E: Display> Display for EncodeToSliceError<E>
impl<E: Display> Display for EncodeToSliceError<E>
impl<E: Eq> Eq for EncodeToSliceError<E>
Source§impl<E: Debug + Display> Error for EncodeToSliceError<E>
impl<E: Debug + Display> Error for EncodeToSliceError<E>
1.30.0 · 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<E> From<InsufficientBuffer> for EncodeToSliceError<E>
impl<E> From<InsufficientBuffer> for EncodeToSliceError<E>
Source§fn from(e: InsufficientBuffer) -> Self
fn from(e: InsufficientBuffer) -> Self
Converts to this type from the input type.
Source§impl<E: PartialEq> PartialEq for EncodeToSliceError<E>
impl<E: PartialEq> PartialEq for EncodeToSliceError<E>
impl<E: PartialEq> StructuralPartialEq for EncodeToSliceError<E>
Auto Trait Implementations§
impl<E> Freeze for EncodeToSliceError<E>where
E: Freeze,
impl<E> RefUnwindSafe for EncodeToSliceError<E>where
E: RefUnwindSafe,
impl<E> Send for EncodeToSliceError<E>where
E: Send,
impl<E> Sync for EncodeToSliceError<E>where
E: Sync,
impl<E> Unpin for EncodeToSliceError<E>where
E: Unpin,
impl<E> UnsafeUnpin for EncodeToSliceError<E>where
E: UnsafeUnpin,
impl<E> UnwindSafe for EncodeToSliceError<E>where
E: UnwindSafe,
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