pub enum SerdeError<T> {
Error(Error),
MissingRootStep,
InvalidFormat(T),
}Variants§
Trait Implementations§
Source§impl<T: Debug> Debug for SerdeError<T>
impl<T: Debug> Debug for SerdeError<T>
Source§impl<T> From<Error> for SerdeError<T>
impl<T> From<Error> for SerdeError<T>
Auto Trait Implementations§
impl<T> Freeze for SerdeError<T>where
T: Freeze,
impl<T> RefUnwindSafe for SerdeError<T>where
T: RefUnwindSafe,
impl<T> Send for SerdeError<T>where
T: Send,
impl<T> Sync for SerdeError<T>where
T: Sync,
impl<T> Unpin for SerdeError<T>where
T: Unpin,
impl<T> UnwindSafe for SerdeError<T>where
T: 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