pub enum EngawaLispError {
Parse(ParseError),
Lower(LowerError),
}Variants§
Parse(ParseError)
Lower(LowerError)
Trait Implementations§
Source§impl Debug for EngawaLispError
impl Debug for EngawaLispError
Source§impl Display for EngawaLispError
impl Display for EngawaLispError
Source§impl Error for EngawaLispError
impl Error for EngawaLispError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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<LowerError> for EngawaLispError
impl From<LowerError> for EngawaLispError
Source§fn from(source: LowerError) -> Self
fn from(source: LowerError) -> Self
Converts to this type from the input type.
Source§impl From<ParseError> for EngawaLispError
impl From<ParseError> for EngawaLispError
Source§fn from(source: ParseError) -> Self
fn from(source: ParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EngawaLispError
impl RefUnwindSafe for EngawaLispError
impl Send for EngawaLispError
impl Sync for EngawaLispError
impl Unpin for EngawaLispError
impl UnsafeUnpin for EngawaLispError
impl UnwindSafe for EngawaLispError
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