pub struct UsageBreakdownResponse {
pub data: Vec<UsageBreakdownBuild>,
}Expand description
An organization’s VM usage over a window, grouped by build (newest first).
JSON schema
{
"title": "UsageBreakdownResponse",
"description": "An organization's VM usage over a window, grouped by
build (newest first).",
"type": "object",
"required": [
"data"
],
"properties": {
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/UsageBreakdownBuild"
}
}
}
}Fields§
§data: Vec<UsageBreakdownBuild>Trait Implementations§
Source§impl Clone for UsageBreakdownResponse
impl Clone for UsageBreakdownResponse
Source§fn clone(&self) -> UsageBreakdownResponse
fn clone(&self) -> UsageBreakdownResponse
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 UsageBreakdownResponse
impl Debug for UsageBreakdownResponse
Source§impl<'de> Deserialize<'de> for UsageBreakdownResponse
impl<'de> Deserialize<'de> for UsageBreakdownResponse
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
Auto Trait Implementations§
impl Freeze for UsageBreakdownResponse
impl RefUnwindSafe for UsageBreakdownResponse
impl Send for UsageBreakdownResponse
impl Sync for UsageBreakdownResponse
impl Unpin for UsageBreakdownResponse
impl UnsafeUnpin for UsageBreakdownResponse
impl UnwindSafe for UsageBreakdownResponse
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