pub enum ScannerErrorDetails {
EndOfInput,
}Expand description
An enumeration of possible faults
Variants§
EndOfInput
Trait Implementations§
source§impl Clone for ScannerErrorDetails
impl Clone for ScannerErrorDetails
source§fn clone(&self) -> ScannerErrorDetails
fn clone(&self) -> ScannerErrorDetails
Returns a copy 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 ScannerErrorDetails
impl Debug for ScannerErrorDetails
source§impl Display for ScannerErrorDetails
impl Display for ScannerErrorDetails
Convert specific fault codes into human-readable strings
source§impl PartialEq for ScannerErrorDetails
impl PartialEq for ScannerErrorDetails
source§fn eq(&self, other: &ScannerErrorDetails) -> bool
fn eq(&self, other: &ScannerErrorDetails) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ScannerErrorDetails
Auto Trait Implementations§
impl RefUnwindSafe for ScannerErrorDetails
impl Send for ScannerErrorDetails
impl Sync for ScannerErrorDetails
impl Unpin for ScannerErrorDetails
impl UnwindSafe for ScannerErrorDetails
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