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<UsageGroup, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<UsageGroup, <__D as Deserializer<'de>>::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
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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