pub struct AsciiError(/* private fields */);
Expand description
An error happened while reading an ASCII-only file.
Trait Implementations§
Source§impl Clone for AsciiError
impl Clone for AsciiError
Source§fn clone(&self) -> AsciiError
fn clone(&self) -> AsciiError
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 AsciiError
impl Debug for AsciiError
Source§impl Display for AsciiError
impl Display for AsciiError
Source§impl Fail for AsciiError
impl Fail for AsciiError
Source§fn cause(&self) -> Option<&dyn Fail>
fn cause(&self) -> Option<&dyn Fail>
Returns a reference to the underlying cause of this failure, if it
is an error that wraps other errors. Read more
Source§fn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the
Backtrace
carried by this failure, if it
carries one. Read moreSource§impl PartialEq for AsciiError
impl PartialEq for AsciiError
impl Copy for AsciiError
impl Eq for AsciiError
impl StructuralPartialEq for AsciiError
Auto Trait Implementations§
impl Freeze for AsciiError
impl RefUnwindSafe for AsciiError
impl Send for AsciiError
impl Sync for AsciiError
impl Unpin for AsciiError
impl UnwindSafe for AsciiError
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