pub enum ErrorSource {
Core(Box<Error>),
Utf8(Utf8Error),
}Variants§
Trait Implementations§
Source§impl Clone for ErrorSource
impl Clone for ErrorSource
Source§fn clone(&self) -> ErrorSource
fn clone(&self) -> ErrorSource
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 moreSource§impl Debug for ErrorSource
impl Debug for ErrorSource
Source§impl From<Error> for ErrorSource
impl From<Error> for ErrorSource
Source§impl From<Utf8Error> for ErrorSource
impl From<Utf8Error> for ErrorSource
Source§impl PartialEq for ErrorSource
impl PartialEq for ErrorSource
Source§fn eq(&self, other: &ErrorSource) -> bool
fn eq(&self, other: &ErrorSource) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ErrorSource
impl StructuralPartialEq for ErrorSource
Auto Trait Implementations§
impl Freeze for ErrorSource
impl RefUnwindSafe for ErrorSource
impl Send for ErrorSource
impl Sync for ErrorSource
impl Unpin for ErrorSource
impl UnsafeUnpin for ErrorSource
impl UnwindSafe for ErrorSource
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