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 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 ScannerErrorDetails
impl Debug for ScannerErrorDetails
Source§impl Display for ScannerErrorDetails
Convert specific fault codes into human-readable strings
impl Display for ScannerErrorDetails
Convert specific fault codes into human-readable strings
Source§impl PartialEq for ScannerErrorDetails
impl PartialEq for ScannerErrorDetails
impl StructuralPartialEq for ScannerErrorDetails
Auto Trait Implementations§
impl Freeze for ScannerErrorDetails
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