pub struct Diagnostic { /* private fields */ }
Expand description
A Diagnostic is more flexible way to build and output errors and warnings.
Implementations§
Source§impl Diagnostic
impl Diagnostic
Sourcepub fn add_span_with_label(
self,
span: Span,
label: Option<&str>,
primary: bool,
) -> Self
pub fn add_span_with_label( self, span: Span, label: Option<&str>, primary: bool, ) -> Self
Adds a code span to the diagnostic.
The label
is printed next to the code fragment the span refers to.
If primary
is set to true the span is treated as the primary code fragment.
Sourcepub fn maybe_add_span_with_label(
self,
span: Option<Span>,
label: Option<&str>,
primary: bool,
) -> Self
pub fn maybe_add_span_with_label( self, span: Option<Span>, label: Option<&str>, primary: bool, ) -> Self
Adds a code span to the diagnostic if the span is available.
The label
is printed next to the code fragment the span refers to.
If primary
is set to true the span is treated as the primary code fragment.
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<'de> Deserialize<'de> for Diagnostic
impl<'de> Deserialize<'de> for Diagnostic
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<Diagnostic> for Diagnostic<()>
impl From<Diagnostic> for Diagnostic<()>
Source§fn from(diag: Diagnostic) -> Self
fn from(diag: Diagnostic) -> Self
Converts to this type from the input type.
Source§impl From<Diagnostic> for RtLolaError
impl From<Diagnostic> for RtLolaError
Source§fn from(diag: Diagnostic) -> Self
fn from(diag: Diagnostic) -> Self
Converts to this type from the input type.
Source§impl FromIterator<Diagnostic> for RtLolaError
impl FromIterator<Diagnostic> for RtLolaError
Source§fn from_iter<T: IntoIterator<Item = Diagnostic>>(iter: T) -> Self
fn from_iter<T: IntoIterator<Item = Diagnostic>>(iter: T) -> Self
Creates a value from an iterator. Read more
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