pub enum Verbosity {
Full,
Brief,
}Expand description
Text detail level for non-visual rendering.
Full reproduces the current full-render behavior, so it is the
backward-compatible default. Brief is consumed by non-visual renderers
(e.g., the Phase 216 conversational-text renderer) to omit secondary detail.
Variants§
Full
Full detail — preserves current visual render behavior. (default)
Brief
Reduced detail for non-visual channels.
Trait Implementations§
impl Copy for Verbosity
impl Eq for Verbosity
impl StructuralPartialEq for Verbosity
Auto Trait Implementations§
impl Freeze for Verbosity
impl RefUnwindSafe for Verbosity
impl Send for Verbosity
impl Sync for Verbosity
impl Unpin for Verbosity
impl UnsafeUnpin for Verbosity
impl UnwindSafe for Verbosity
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