pub struct Diagnostic {
pub loc: Loc,
pub level: Level,
pub ty: ErrorType,
pub message: String,
pub notes: Vec<Note>,
}
Fields§
§loc: Loc
§level: Level
§ty: ErrorType
§message: String
§notes: Vec<Note>
Implementations§
Source§impl Diagnostic
impl Diagnostic
pub fn debug(loc: Loc, message: String) -> Self
pub fn info(loc: Loc, message: String) -> Self
pub fn parser_error(loc: Loc, message: String) -> Self
pub fn error(loc: Loc, message: String) -> Self
pub fn decl_error(loc: Loc, message: String) -> Self
pub fn cast_error(loc: Loc, message: String) -> Self
pub fn cast_error_with_note( loc: Loc, message: String, note_loc: Loc, note: String, ) -> Self
pub fn type_error(loc: Loc, message: String) -> Self
pub fn cast_warning(loc: Loc, message: String) -> Self
pub fn warning(loc: Loc, message: String) -> Self
pub fn warning_with_note( loc: Loc, message: String, note_loc: Loc, note: String, ) -> Self
pub fn warning_with_notes(loc: Loc, message: String, notes: Vec<Note>) -> Self
pub fn error_with_note( loc: Loc, message: String, note_loc: Loc, note: String, ) -> Self
pub fn error_with_notes(loc: Loc, message: String, notes: Vec<Note>) -> Self
Trait Implementations§
Source§impl Clone for Diagnostic
impl Clone for Diagnostic
Source§fn clone(&self) -> Diagnostic
fn clone(&self) -> Diagnostic
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 Diagnostic
impl Debug for Diagnostic
Source§impl Hash for Diagnostic
impl Hash for Diagnostic
Source§impl Ord for Diagnostic
impl Ord for Diagnostic
Source§fn cmp(&self, other: &Diagnostic) -> Ordering
fn cmp(&self, other: &Diagnostic) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for Diagnostic
impl PartialEq for Diagnostic
Source§impl PartialOrd for Diagnostic
impl PartialOrd for Diagnostic
impl Eq for Diagnostic
impl StructuralPartialEq for Diagnostic
Auto Trait Implementations§
impl Freeze for Diagnostic
impl RefUnwindSafe for Diagnostic
impl Send for Diagnostic
impl Sync for Diagnostic
impl Unpin for Diagnostic
impl UnwindSafe for Diagnostic
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