pub enum ErrorRepr {
FromUtf8(FromUtf8Error),
Utf8(Utf8Error),
ParseError(Cow<'static, str>, String, usize),
Other(String),
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ErrorRepr
impl RefUnwindSafe for ErrorRepr
impl Send for ErrorRepr
impl Sync for ErrorRepr
impl Unpin for ErrorRepr
impl UnwindSafe for ErrorRepr
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