pub enum ParseFileErrorStandalone {
Lex(LexError),
Parse(Vec<ParseError>),
}
Variants
Lex(LexError)
Parse(Vec<ParseError>)
Trait Implementations
sourceimpl Clone for ParseFileErrorStandalone
impl Clone for ParseFileErrorStandalone
sourcefn clone(&self) -> ParseFileErrorStandalone
fn clone(&self) -> ParseFileErrorStandalone
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ParseFileErrorStandalone
impl Debug for ParseFileErrorStandalone
sourceimpl Display for ParseFileErrorStandalone
impl Display for ParseFileErrorStandalone
sourceimpl Error for ParseFileErrorStandalone
impl Error for ParseFileErrorStandalone
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl Hash for ParseFileErrorStandalone
impl Hash for ParseFileErrorStandalone
sourceimpl PartialEq<ParseFileErrorStandalone> for ParseFileErrorStandalone
impl PartialEq<ParseFileErrorStandalone> for ParseFileErrorStandalone
sourcefn eq(&self, other: &ParseFileErrorStandalone) -> bool
fn eq(&self, other: &ParseFileErrorStandalone) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl Eq for ParseFileErrorStandalone
impl StructuralEq for ParseFileErrorStandalone
impl StructuralPartialEq for ParseFileErrorStandalone
Auto Trait Implementations
impl RefUnwindSafe for ParseFileErrorStandalone
impl Send for ParseFileErrorStandalone
impl Sync for ParseFileErrorStandalone
impl Unpin for ParseFileErrorStandalone
impl UnwindSafe for ParseFileErrorStandalone
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more