pub struct HtmlReportParams {
pub include_timeline: bool,
pub include_reasoning: bool,
pub include_chat_projection: bool,
pub show_tool_payloads: bool,
pub max_payload_chars: usize,
pub title: String,
}Expand description
Options for HTML dump generation.
Fields§
§include_timeline: boolInclude the event timeline section.
include_reasoning: boolInclude reasoning-summary channel in a separate document section.
include_chat_projection: boolInclude creative chat projection (human-digestible, not ground truth).
show_tool_payloads: boolShow tool request payloads in the timeline (bounded).
max_payload_chars: usizeMax chars of tool payload shown.
title: StringPage title.
Trait Implementations§
Source§impl Clone for HtmlReportParams
impl Clone for HtmlReportParams
Source§fn clone(&self) -> HtmlReportParams
fn clone(&self) -> HtmlReportParams
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 HtmlReportParams
impl Debug for HtmlReportParams
Auto Trait Implementations§
impl Freeze for HtmlReportParams
impl RefUnwindSafe for HtmlReportParams
impl Send for HtmlReportParams
impl Sync for HtmlReportParams
impl Unpin for HtmlReportParams
impl UnsafeUnpin for HtmlReportParams
impl UnwindSafe for HtmlReportParams
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