pub struct CompilationError {
pub message: String,
pub location: (usize, usize),
pub line: (usize, usize),
pub column: (usize, usize),
pub pretty: String,
}
Fields§
§message: String
§location: (usize, usize)
§line: (usize, usize)
§column: (usize, usize)
§pretty: String
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CompilationError
impl RefUnwindSafe for CompilationError
impl Send for CompilationError
impl Sync for CompilationError
impl Unpin for CompilationError
impl UnwindSafe for CompilationError
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