pub enum ParseWithTraceToFileError {
Parse(FurthestFailError),
Io(Error),
}Available on crate feature
parser-trace only.Expand description
Error returned by parse_with_trace_to_file.
Variants§
Trait Implementations§
Source§impl Debug for ParseWithTraceToFileError
impl Debug for ParseWithTraceToFileError
Source§impl From<Error> for ParseWithTraceToFileError
impl From<Error> for ParseWithTraceToFileError
Source§impl From<FurthestFailError> for ParseWithTraceToFileError
impl From<FurthestFailError> for ParseWithTraceToFileError
Source§fn from(value: FurthestFailError) -> Self
fn from(value: FurthestFailError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ParseWithTraceToFileError
impl !RefUnwindSafe for ParseWithTraceToFileError
impl Send for ParseWithTraceToFileError
impl Sync for ParseWithTraceToFileError
impl Unpin for ParseWithTraceToFileError
impl UnsafeUnpin for ParseWithTraceToFileError
impl !UnwindSafe for ParseWithTraceToFileError
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