pub enum SerializeError<A> {
Alloc(A),
SizeLimitExceeded,
}
Expand description
An error in serializing a packet.
SerializeError
is the type of errors returned from methods on the
Serializer
trait. The Alloc
variant indicates that a new buffer could
not be allocated, while the SizeLimitExceeded
variant indicates that a
size limit constraint was exceeded.
Variants§
Alloc(A)
A new buffer could not be allocated.
SizeLimitExceeded
The size limit constraint was exceeded.
Implementations§
Source§impl<A> SerializeError<A>
impl<A> SerializeError<A>
Sourcepub fn is_size_limit_exceeded(&self) -> bool
pub fn is_size_limit_exceeded(&self) -> bool
Is this SerializeError::SizeLimitExceeded
?
Sourcepub fn map_alloc<T, F: FnOnce(A) -> T>(self, f: F) -> SerializeError<T>
pub fn map_alloc<T, F: FnOnce(A) -> T>(self, f: F) -> SerializeError<T>
Maps the SerializeError::Alloc
error type.
Trait Implementations§
Source§impl<A: Clone> Clone for SerializeError<A>
impl<A: Clone> Clone for SerializeError<A>
Source§fn clone(&self) -> SerializeError<A>
fn clone(&self) -> SerializeError<A>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<A: Debug> Debug for SerializeError<A>
impl<A: Debug> Debug for SerializeError<A>
Source§impl<A> From<A> for SerializeError<A>
impl<A> From<A> for SerializeError<A>
Source§fn from(a: A) -> SerializeError<A>
fn from(a: A) -> SerializeError<A>
Converts to this type from the input type.
Source§impl<A: PartialEq> PartialEq for SerializeError<A>
impl<A: PartialEq> PartialEq for SerializeError<A>
impl<A: Copy> Copy for SerializeError<A>
impl<A: Eq> Eq for SerializeError<A>
impl<A> StructuralPartialEq for SerializeError<A>
Auto Trait Implementations§
impl<A> Freeze for SerializeError<A>where
A: Freeze,
impl<A> RefUnwindSafe for SerializeError<A>where
A: RefUnwindSafe,
impl<A> Send for SerializeError<A>where
A: Send,
impl<A> Sync for SerializeError<A>where
A: Sync,
impl<A> Unpin for SerializeError<A>where
A: Unpin,
impl<A> UnwindSafe for SerializeError<A>where
A: 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)