pub enum TelemetryVerbosity {
Quiet,
Full,
}Expand description
How much operational telemetry the model-facing envelope carries.
Quiet (the default) keeps only proof-relevant content: it drops the
runtime block (unless a restart/pressure signal is actionable), the
manifest hash and full import list from freshness, and per-tool search /
cache instrumentation. Full reproduces every field for debugging and
observability tooling. Correctness and truncation signals are never gated.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for TelemetryVerbosity
impl Clone for TelemetryVerbosity
Source§fn clone(&self) -> TelemetryVerbosity
fn clone(&self) -> TelemetryVerbosity
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 moreimpl Copy for TelemetryVerbosity
Source§impl Debug for TelemetryVerbosity
impl Debug for TelemetryVerbosity
Source§impl Default for TelemetryVerbosity
impl Default for TelemetryVerbosity
Source§fn default() -> TelemetryVerbosity
fn default() -> TelemetryVerbosity
Returns the “default value” for a type. Read more
impl Eq for TelemetryVerbosity
Source§impl PartialEq for TelemetryVerbosity
impl PartialEq for TelemetryVerbosity
Source§fn eq(&self, other: &TelemetryVerbosity) -> bool
fn eq(&self, other: &TelemetryVerbosity) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TelemetryVerbosity
Auto Trait Implementations§
impl Freeze for TelemetryVerbosity
impl RefUnwindSafe for TelemetryVerbosity
impl Send for TelemetryVerbosity
impl Sync for TelemetryVerbosity
impl Unpin for TelemetryVerbosity
impl UnsafeUnpin for TelemetryVerbosity
impl UnwindSafe for TelemetryVerbosity
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.