pub enum SerializeErrorKind {
Serialize,
Deserialize,
DeserializeSizeLimitExceeded,
}Expand description
SerializeErrorKind
Stable error-kind taxonomy for serializer failures.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for SerializeErrorKind
impl Clone for SerializeErrorKind
Source§fn clone(&self) -> SerializeErrorKind
fn clone(&self) -> SerializeErrorKind
Returns a duplicate 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 Debug for SerializeErrorKind
impl Debug for SerializeErrorKind
Source§impl Display for SerializeErrorKind
impl Display for SerializeErrorKind
Source§impl PartialEq for SerializeErrorKind
impl PartialEq for SerializeErrorKind
impl Copy for SerializeErrorKind
impl Eq for SerializeErrorKind
impl StructuralPartialEq for SerializeErrorKind
Auto Trait Implementations§
impl Freeze for SerializeErrorKind
impl RefUnwindSafe for SerializeErrorKind
impl Send for SerializeErrorKind
impl Sync for SerializeErrorKind
impl Unpin for SerializeErrorKind
impl UnsafeUnpin for SerializeErrorKind
impl UnwindSafe for SerializeErrorKind
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