pub struct HtmlReportPayload {
pub overview: Value,
pub projects: Value,
pub trends: Value,
pub sessions: Vec<HtmlSessionSummary>,
pub heatmap: HeatmapPayload,
pub wrapped: Option<Value>,
pub active_session_id: Option<String>,
}Expand description
Unified JSON payload for the HTML dashboard. Combines data from all subcommands into a single structure.
Fields§
§overview: Value§projects: Value§trends: Value§sessions: Vec<HtmlSessionSummary>§heatmap: HeatmapPayload§wrapped: Option<Value>§active_session_id: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for HtmlReportPayload
impl RefUnwindSafe for HtmlReportPayload
impl Send for HtmlReportPayload
impl Sync for HtmlReportPayload
impl Unpin for HtmlReportPayload
impl UnsafeUnpin for HtmlReportPayload
impl UnwindSafe for HtmlReportPayload
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more