pub struct Diagnostics<TEntry: DiagnosticEntry>(pub Arc<DiagnosticsBuilder<TEntry>>);
Expand description
A set of diagnostic entries that arose during a computation.
Tuple Fields§
§0: Arc<DiagnosticsBuilder<TEntry>>
Implementations§
source§impl<TEntry: DiagnosticEntry> Diagnostics<TEntry>
impl<TEntry: DiagnosticEntry> Diagnostics<TEntry>
pub fn new() -> Self
sourcepub fn check_error_free(&self) -> Maybe<()>
pub fn check_error_free(&self) -> Maybe<()>
Returns Ok if there are no errors, or DiagnosticAdded if there are.
sourcepub fn format_with_severity(
&self,
db: &TEntry::DbType,
) -> Vec<FormattedDiagnosticEntry>
pub fn format_with_severity( &self, db: &TEntry::DbType, ) -> Vec<FormattedDiagnosticEntry>
Format entries to pairs of severity and message.
sourcepub fn format(&self, db: &TEntry::DbType) -> String
pub fn format(&self, db: &TEntry::DbType) -> String
Format entries to a String
with messages prefixed by severity.
sourcepub fn expect(&self, error_message: &str)
pub fn expect(&self, error_message: &str)
Asserts that no diagnostic has occurred, panicking with an error message on failure.
sourcepub fn expect_with_db(&self, db: &TEntry::DbType, error_message: &str)
pub fn expect_with_db(&self, db: &TEntry::DbType, error_message: &str)
Same as Self::expect, except that the diagnostics are formatted.
sourcepub fn get_diagnostics_without_duplicates(
&self,
db: &TEntry::DbType,
) -> Vec<TEntry>
pub fn get_diagnostics_without_duplicates( &self, db: &TEntry::DbType, ) -> Vec<TEntry>
Get diagnostics without duplication.
Two diagnostics are considered duplicated if both point to the same location in the user code, and are of the same kind.
Trait Implementations§
source§impl<TEntry: Clone + DiagnosticEntry> Clone for Diagnostics<TEntry>
impl<TEntry: Clone + DiagnosticEntry> Clone for Diagnostics<TEntry>
source§fn clone(&self) -> Diagnostics<TEntry>
fn clone(&self) -> Diagnostics<TEntry>
Returns a copy 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<TEntry: Debug + DiagnosticEntry> Debug for Diagnostics<TEntry>
impl<TEntry: Debug + DiagnosticEntry> Debug for Diagnostics<TEntry>
source§impl<TEntry: DiagnosticEntry> Default for Diagnostics<TEntry>
impl<TEntry: DiagnosticEntry> Default for Diagnostics<TEntry>
source§impl<TEntry: DiagnosticEntry> From<Diagnostics<TEntry>> for DiagnosticsBuilder<TEntry>
impl<TEntry: DiagnosticEntry> From<Diagnostics<TEntry>> for DiagnosticsBuilder<TEntry>
source§fn from(diagnostics: Diagnostics<TEntry>) -> Self
fn from(diagnostics: Diagnostics<TEntry>) -> Self
Converts to this type from the input type.
source§impl<TEntry: DiagnosticEntry> FromIterator<TEntry> for Diagnostics<TEntry>
impl<TEntry: DiagnosticEntry> FromIterator<TEntry> for Diagnostics<TEntry>
source§fn from_iter<T: IntoIterator<Item = TEntry>>(diags_iter: T) -> Self
fn from_iter<T: IntoIterator<Item = TEntry>>(diags_iter: T) -> Self
Creates a value from an iterator. Read more
source§impl<TEntry: Hash + DiagnosticEntry> Hash for Diagnostics<TEntry>
impl<TEntry: Hash + DiagnosticEntry> Hash for Diagnostics<TEntry>
source§impl<TEntry: PartialEq + DiagnosticEntry> PartialEq for Diagnostics<TEntry>
impl<TEntry: PartialEq + DiagnosticEntry> PartialEq for Diagnostics<TEntry>
impl<TEntry: Eq + DiagnosticEntry> Eq for Diagnostics<TEntry>
impl<TEntry: DiagnosticEntry> StructuralPartialEq for Diagnostics<TEntry>
Auto Trait Implementations§
impl<TEntry> Freeze for Diagnostics<TEntry>
impl<TEntry> RefUnwindSafe for Diagnostics<TEntry>where
TEntry: RefUnwindSafe,
impl<TEntry> Send for Diagnostics<TEntry>
impl<TEntry> Sync for Diagnostics<TEntry>
impl<TEntry> Unpin for Diagnostics<TEntry>
impl<TEntry> UnwindSafe for Diagnostics<TEntry>where
TEntry: RefUnwindSafe,
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more