pub enum BoseijuError {
LexerError(LexerError),
ParserError(ParserError),
}Variants§
LexerError(LexerError)
ParserError(ParserError)
Trait Implementations§
Source§impl Clone for BoseijuError
impl Clone for BoseijuError
Source§fn clone(&self) -> BoseijuError
fn clone(&self) -> BoseijuError
Returns a duplicate 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 BoseijuError
impl Debug for BoseijuError
Source§impl Display for BoseijuError
impl Display for BoseijuError
Source§impl From<LexerError> for BoseijuError
impl From<LexerError> for BoseijuError
Source§fn from(e: LexerError) -> BoseijuError
fn from(e: LexerError) -> BoseijuError
Converts to this type from the input type.
Source§impl From<ParserError> for BoseijuError
impl From<ParserError> for BoseijuError
Source§fn from(e: ParserError) -> BoseijuError
fn from(e: ParserError) -> BoseijuError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BoseijuError
impl RefUnwindSafe for BoseijuError
impl Send for BoseijuError
impl Sync for BoseijuError
impl Unpin for BoseijuError
impl UnwindSafe for BoseijuError
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