Struct swc_common::errors::SubDiagnostic
source · [−]pub struct SubDiagnostic {
pub level: Level,
pub message: Vec<(String, Style)>,
pub span: MultiSpan,
pub render_span: Option<MultiSpan>,
}
Expand description
For example a note attached to an error.
Fields
level: Level
message: Vec<(String, Style)>
span: MultiSpan
render_span: Option<MultiSpan>
Implementations
Trait Implementations
sourceimpl Clone for SubDiagnostic
impl Clone for SubDiagnostic
sourcefn clone(&self) -> SubDiagnostic
fn clone(&self) -> SubDiagnostic
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for SubDiagnostic
impl Debug for SubDiagnostic
sourceimpl Hash for SubDiagnostic
impl Hash for SubDiagnostic
sourceimpl PartialEq<SubDiagnostic> for SubDiagnostic
impl PartialEq<SubDiagnostic> for SubDiagnostic
sourcefn eq(&self, other: &SubDiagnostic) -> bool
fn eq(&self, other: &SubDiagnostic) -> bool
impl Eq for SubDiagnostic
impl StructuralEq for SubDiagnostic
impl StructuralPartialEq for SubDiagnostic
Auto Trait Implementations
impl RefUnwindSafe for SubDiagnostic
impl Send for SubDiagnostic
impl Sync for SubDiagnostic
impl Unpin for SubDiagnostic
impl UnwindSafe for SubDiagnostic
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more