pub struct UsageGroup {
pub workspace: String,
pub cost_usd: f64,
pub turns: u64,
pub outcomes: OutcomeCounts,
pub series: Vec<UsageBucket>,
}Expand description
One workspace’s totals over the whole window, plus its daily series.
cost_usd and outcomes can legitimately disagree: an agent killed before
it reported a result contributes to outcomes.killed with no cost at all, so
a workspace may show outcomes against zero spend. Charts should not treat
that as missing data.
Fields§
§workspace: StringWorkspace name.
cost_usd: f64Cost across the window.
turns: u64Turns across the window.
outcomes: OutcomeCountsTerminal outcomes across the window.
series: Vec<UsageBucket>Per-day breakdown, ascending by day. Only days with activity appear.
Trait Implementations§
Source§impl Clone for UsageGroup
impl Clone for UsageGroup
Source§fn clone(&self) -> UsageGroup
fn clone(&self) -> UsageGroup
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 UsageGroup
impl Debug for UsageGroup
Source§impl Default for UsageGroup
impl Default for UsageGroup
Source§fn default() -> UsageGroup
fn default() -> UsageGroup
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UsageGroup
impl<'de> Deserialize<'de> for UsageGroup
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for UsageGroup
impl PartialEq for UsageGroup
Source§fn eq(&self, other: &UsageGroup) -> bool
fn eq(&self, other: &UsageGroup) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UsageGroup
impl Serialize for UsageGroup
impl StructuralPartialEq for UsageGroup
Auto Trait Implementations§
impl Freeze for UsageGroup
impl RefUnwindSafe for UsageGroup
impl Send for UsageGroup
impl Sync for UsageGroup
impl Unpin for UsageGroup
impl UnsafeUnpin for UsageGroup
impl UnwindSafe for UsageGroup
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