pub enum SerializeErrorCause {
IoError(Error),
}
Variants§
Trait Implementations§
Source§impl Debug for SerializeErrorCause
impl Debug for SerializeErrorCause
Source§impl Display for SerializeErrorCause
impl Display for SerializeErrorCause
Source§impl Error for SerializeErrorCause
impl Error for SerializeErrorCause
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 From<Error> for SerializeErrorCause
impl From<Error> for SerializeErrorCause
Source§fn from(io_error: Error) -> SerializeErrorCause
fn from(io_error: Error) -> SerializeErrorCause
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SerializeErrorCause
impl !RefUnwindSafe for SerializeErrorCause
impl Send for SerializeErrorCause
impl Sync for SerializeErrorCause
impl Unpin for SerializeErrorCause
impl !UnwindSafe for SerializeErrorCause
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