pub enum DiagnosticsProfile {
All,
CriticalOnly,
}Expand description
Policy profile controlling which diagnostics are emitted.
Variants§
All
Emit all diagnostics (full analysis mode).
CriticalOnly
Emit only critical diagnostics (currently severity=Error).
Trait Implementations§
Source§impl Clone for DiagnosticsProfile
impl Clone for DiagnosticsProfile
Source§fn clone(&self) -> DiagnosticsProfile
fn clone(&self) -> DiagnosticsProfile
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DiagnosticsProfile
impl Debug for DiagnosticsProfile
Source§impl PartialEq for DiagnosticsProfile
impl PartialEq for DiagnosticsProfile
Source§fn eq(&self, other: &DiagnosticsProfile) -> bool
fn eq(&self, other: &DiagnosticsProfile) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DiagnosticsProfile
impl Eq for DiagnosticsProfile
impl StructuralPartialEq for DiagnosticsProfile
Auto Trait Implementations§
impl Freeze for DiagnosticsProfile
impl RefUnwindSafe for DiagnosticsProfile
impl Send for DiagnosticsProfile
impl Sync for DiagnosticsProfile
impl Unpin for DiagnosticsProfile
impl UnsafeUnpin for DiagnosticsProfile
impl UnwindSafe for DiagnosticsProfile
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§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.