pub struct ASCIIError {
pub message: String,
}
Expand description
Represents an Error that occurred encoding or decoding ASCII values
Fields§
§message: String
a description of the error
Trait Implementations§
Source§impl Debug for ASCIIError
impl Debug for ASCIIError
Source§impl Display for ASCIIError
impl Display for ASCIIError
Source§impl Error for ASCIIError
impl Error for ASCIIError
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
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for ASCIIError
impl PartialEq 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