pub enum BuildErrors {
Source(Error),
Syntax(Box<[ParserError]>),
Compile(Box<[CompileError]>),
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BuildErrors
impl !RefUnwindSafe for BuildErrors
impl !Send for BuildErrors
impl !Sync for BuildErrors
impl Unpin for BuildErrors
impl !UnwindSafe for BuildErrors
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