#[repr(u8)]pub enum VerbosityTier {
Quiet = 0,
Normal = 1,
Detailed = 2,
Debug = 3,
Internal = 99,
}Expand description
Minimum verbosity level at which content is visible.
Variants§
Quiet = 0
Always visible (errors, assistant text, final reports).
Normal = 1
Standard progress (plan updates, milestones, agentic loop).
Detailed = 2
Detailed internals (protocol events, tool calls, subagent activity).
Debug = 3
Everything including internals (thinking, heartbeats).
Internal = 99
Never shown at any level (implementation details).
Trait Implementations§
Source§impl Clone for VerbosityTier
impl Clone for VerbosityTier
Source§fn clone(&self) -> VerbosityTier
fn clone(&self) -> VerbosityTier
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 VerbosityTier
Source§impl Debug for VerbosityTier
impl Debug for VerbosityTier
impl Eq for VerbosityTier
Source§impl Ord for VerbosityTier
impl Ord for VerbosityTier
Source§fn cmp(&self, other: &VerbosityTier) -> Ordering
fn cmp(&self, other: &VerbosityTier) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for VerbosityTier
impl PartialEq for VerbosityTier
Source§impl PartialOrd for VerbosityTier
impl PartialOrd for VerbosityTier
impl StructuralPartialEq for VerbosityTier
Auto Trait Implementations§
impl Freeze for VerbosityTier
impl RefUnwindSafe for VerbosityTier
impl Send for VerbosityTier
impl Sync for VerbosityTier
impl Unpin for VerbosityTier
impl UnsafeUnpin for VerbosityTier
impl UnwindSafe for VerbosityTier
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