pub struct MemberDrilldown {
pub schema_version: u32,
pub generated_at: String,
pub signer: String,
pub agent_id: String,
pub last_reported: String,
pub totals: SavingsTotals,
pub by_model: Vec<ModelRow>,
pub by_tool: Vec<ToolRow>,
pub series: Vec<SeriesPoint>,
pub window_days: u32,
}Expand description
Per-member drilldown (GL #389) — one signer’s full picture: latest totals, model/tool breakdowns from the latest batch, and a 90-day cumulative series replayed from that signer’s snapshot history alone.
Fields§
§schema_version: u32§generated_at: String§signer: StringTruncated signer public key — matches by_member[].signer in the summary.
agent_id: String§last_reported: Stringcreated_at of the member’s most recent batch (RFC 3339).
totals: SavingsTotals§by_model: Vec<ModelRow>This member’s model breakdown (latest batch, top rows).
by_tool: Vec<ToolRow>This member’s tool breakdown (latest batch, top rows).
series: Vec<SeriesPoint>Trailing-window cumulative daily series for this member only.
window_days: u32Trait Implementations§
Source§impl Debug for MemberDrilldown
impl Debug for MemberDrilldown
Auto Trait Implementations§
impl Freeze for MemberDrilldown
impl RefUnwindSafe for MemberDrilldown
impl Send for MemberDrilldown
impl Sync for MemberDrilldown
impl Unpin for MemberDrilldown
impl UnsafeUnpin for MemberDrilldown
impl UnwindSafe for MemberDrilldown
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
impl<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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