pub struct ConsoleRendererConfig {
pub verbose: bool,
pub show_tool_payloads: bool,
pub max_content_chars: usize,
}Expand description
Configuration for the console renderer.
Fields§
§verbose: boolInclude paragraph/structure verbose lines.
show_tool_payloads: boolShow tool request payloads (bounded; default false).
max_content_chars: usizeMaximum content characters per line (escape + truncate).
Trait Implementations§
Source§impl Clone for ConsoleRendererConfig
impl Clone for ConsoleRendererConfig
Source§fn clone(&self) -> ConsoleRendererConfig
fn clone(&self) -> ConsoleRendererConfig
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 ConsoleRendererConfig
impl Debug for ConsoleRendererConfig
Auto Trait Implementations§
impl Freeze for ConsoleRendererConfig
impl RefUnwindSafe for ConsoleRendererConfig
impl Send for ConsoleRendererConfig
impl Sync for ConsoleRendererConfig
impl Unpin for ConsoleRendererConfig
impl UnsafeUnpin for ConsoleRendererConfig
impl UnwindSafe for ConsoleRendererConfig
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