pub struct DiagnosticsBuilder<TEntry: DiagnosticEntry> {
pub count: usize,
pub leaves: Vec<TEntry>,
pub subtrees: Vec<Diagnostics<TEntry>>,
}
Expand description
A builder for Diagnostics, accumulating multiple diagnostic entries.
Fields§
§count: usize
§leaves: Vec<TEntry>
§subtrees: Vec<Diagnostics<TEntry>>
Implementations§
source§impl<TEntry: DiagnosticEntry> DiagnosticsBuilder<TEntry>
impl<TEntry: DiagnosticEntry> DiagnosticsBuilder<TEntry>
pub fn new() -> Self
pub fn add(&mut self, diagnostic: TEntry) -> DiagnosticAdded
pub fn extend(&mut self, diagnostics: Diagnostics<TEntry>)
pub fn build(self) -> Diagnostics<TEntry>
Trait Implementations§
source§impl<TEntry: Clone + DiagnosticEntry> Clone for DiagnosticsBuilder<TEntry>
impl<TEntry: Clone + DiagnosticEntry> Clone for DiagnosticsBuilder<TEntry>
source§fn clone(&self) -> DiagnosticsBuilder<TEntry>
fn clone(&self) -> DiagnosticsBuilder<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 DiagnosticsBuilder<TEntry>
impl<TEntry: Debug + DiagnosticEntry> Debug for DiagnosticsBuilder<TEntry>
source§impl<TEntry: DiagnosticEntry> Default for DiagnosticsBuilder<TEntry>
impl<TEntry: DiagnosticEntry> Default for DiagnosticsBuilder<TEntry>
source§impl<TEntry: Hash + DiagnosticEntry> Hash for DiagnosticsBuilder<TEntry>
impl<TEntry: Hash + DiagnosticEntry> Hash for DiagnosticsBuilder<TEntry>
source§impl<TEntry: PartialEq + DiagnosticEntry> PartialEq for DiagnosticsBuilder<TEntry>
impl<TEntry: PartialEq + DiagnosticEntry> PartialEq for DiagnosticsBuilder<TEntry>
source§fn eq(&self, other: &DiagnosticsBuilder<TEntry>) -> bool
fn eq(&self, other: &DiagnosticsBuilder<TEntry>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<TEntry: Eq + DiagnosticEntry> Eq for DiagnosticsBuilder<TEntry>
impl<TEntry: DiagnosticEntry> StructuralEq for DiagnosticsBuilder<TEntry>
impl<TEntry: DiagnosticEntry> StructuralPartialEq for DiagnosticsBuilder<TEntry>
Auto Trait Implementations§
impl<TEntry> RefUnwindSafe for DiagnosticsBuilder<TEntry>where
TEntry: RefUnwindSafe,
impl<TEntry> Send for DiagnosticsBuilder<TEntry>
impl<TEntry> Sync for DiagnosticsBuilder<TEntry>
impl<TEntry> Unpin for DiagnosticsBuilder<TEntry>where
TEntry: Unpin,
impl<TEntry> UnwindSafe for DiagnosticsBuilder<TEntry>where
TEntry: UnwindSafe + 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<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.§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.