pub struct Diagnostic {
pub pos: SrcPos,
pub message: String,
pub severity: Severity,
pub related: Vec<(SrcPos, String)>,
}Fields§
§pos: SrcPos§message: String§severity: SeverityImplementations§
Source§impl Diagnostic
impl Diagnostic
pub fn new( item: impl AsRef<SrcPos>, msg: impl Into<String>, severity: Severity, ) -> Diagnostic
pub fn error(item: impl AsRef<SrcPos>, msg: impl Into<String>) -> Diagnostic
pub fn warning(item: impl AsRef<SrcPos>, msg: impl Into<String>) -> Diagnostic
pub fn hint(item: impl AsRef<SrcPos>, msg: impl Into<String>) -> Diagnostic
pub fn info(item: impl AsRef<SrcPos>, msg: impl Into<String>) -> Diagnostic
pub fn when(self, message: impl AsRef<str>) -> Diagnostic
pub fn show(&self) -> String
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 PartialEq for Diagnostic
impl PartialEq 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