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 Error for ErrorCause
impl Error for ErrorCause
source§fn 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 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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(source: SyntaxError) -> Self
fn from(source: SyntaxError) -> Self
Converts to this type from the input type.
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