Struct cairo_lang_diagnostics::Diagnostics
source · 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 an error handle 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.
pub fn get_all(&self) -> Vec<TEntry>
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: 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>
source§fn eq(&self, other: &Diagnostics<TEntry>) -> bool
fn eq(&self, other: &Diagnostics<TEntry>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<TEntry: Eq + DiagnosticEntry> Eq for Diagnostics<TEntry>
impl<TEntry: DiagnosticEntry> StructuralEq for Diagnostics<TEntry>
impl<TEntry: DiagnosticEntry> StructuralPartialEq for Diagnostics<TEntry>
Auto Trait Implementations§
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§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<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.