pub struct CostQuery {
pub agent: Option<String>,
pub from: Option<String>,
pub to: Option<String>,
}Expand description
Query parameters for GET /api/cost. When agent is set, the
returned summary filters to records attributed to that alias.
Fields§
§agent: Option<String>§from: Option<String>RFC3339 UTC instants — caller-computed window bounds. The dashboard derives them in the operator’s local timezone so “today” means the operator’s today, not the daemon’s UTC today.
to: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for CostQuery
impl<'de> Deserialize<'de> for CostQuery
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CostQuery, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CostQuery, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CostQuery
impl RefUnwindSafe for CostQuery
impl Send for CostQuery
impl Sync for CostQuery
impl Unpin for CostQuery
impl UnsafeUnpin for CostQuery
impl UnwindSafe for CostQuery
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<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