Enum yash_syntax::parser::ErrorCause
source · pub enum ErrorCause {
Io(Rc<Error>),
Syntax(SyntaxError),
}
Expand description
Types of errors that may happen in parsing.
Variants§
Implementations§
source§impl ErrorCause
impl ErrorCause
Trait Implementations§
source§impl Clone for ErrorCause
impl Clone for ErrorCause
source§fn clone(&self) -> ErrorCause
fn clone(&self) -> ErrorCause
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 ErrorCause
impl Debug for ErrorCause
source§impl Display for ErrorCause
impl Display for ErrorCause
source§impl From<Error> for ErrorCause
impl From<Error> for ErrorCause
source§fn from(e: Error) -> ErrorCause
fn from(e: Error) -> ErrorCause
Converts to this type from the input type.
source§impl From<SyntaxError> for ErrorCause
impl From<SyntaxError> for ErrorCause
source§fn from(e: SyntaxError) -> ErrorCause
fn from(e: SyntaxError) -> ErrorCause
Converts to this type from the input type.
source§impl PartialEq<ErrorCause> for ErrorCause
impl PartialEq<ErrorCause> for ErrorCause
Auto Trait Implementations§
impl !RefUnwindSafe for ErrorCause
impl !Send for ErrorCause
impl !Sync for ErrorCause
impl Unpin for ErrorCause
impl !UnwindSafe for ErrorCause
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