pub struct AppsGetMetricsBandwidthDailyResponseAppBandwidthUsageItem {
pub app_id: Option<String>,
pub bandwidth_bytes: Option<String>,
}Expand description
Bandwidth usage for an app.
JSON schema
{
"description": "Bandwidth usage for an app.",
"type": "object",
"properties": {
"app_id": {
"description": "The ID of the app.",
"examples": [
"4f6c71e2-1e90-4762-9fee-6cc4a0a9f2cf"
],
"type": "string"
},
"bandwidth_bytes": {
"description": "The used bandwidth amount in bytes.",
"examples": [
"513668"
],
"type": "string",
"format": "uint64"
}
}
}Fields§
§app_id: Option<String>The ID of the app.
bandwidth_bytes: Option<String>The used bandwidth amount in bytes.
Trait Implementations§
Source§impl Clone for AppsGetMetricsBandwidthDailyResponseAppBandwidthUsageItem
impl Clone for AppsGetMetricsBandwidthDailyResponseAppBandwidthUsageItem
Source§fn clone(&self) -> AppsGetMetricsBandwidthDailyResponseAppBandwidthUsageItem
fn clone(&self) -> AppsGetMetricsBandwidthDailyResponseAppBandwidthUsageItem
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<'de> Deserialize<'de> for AppsGetMetricsBandwidthDailyResponseAppBandwidthUsageItem
impl<'de> Deserialize<'de> for AppsGetMetricsBandwidthDailyResponseAppBandwidthUsageItem
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 From<&AppsGetMetricsBandwidthDailyResponseAppBandwidthUsageItem> for AppsGetMetricsBandwidthDailyResponseAppBandwidthUsageItem
impl From<&AppsGetMetricsBandwidthDailyResponseAppBandwidthUsageItem> for AppsGetMetricsBandwidthDailyResponseAppBandwidthUsageItem
Source§fn from(
value: &AppsGetMetricsBandwidthDailyResponseAppBandwidthUsageItem,
) -> Self
fn from( value: &AppsGetMetricsBandwidthDailyResponseAppBandwidthUsageItem, ) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AppsGetMetricsBandwidthDailyResponseAppBandwidthUsageItem
impl RefUnwindSafe for AppsGetMetricsBandwidthDailyResponseAppBandwidthUsageItem
impl Send for AppsGetMetricsBandwidthDailyResponseAppBandwidthUsageItem
impl Sync for AppsGetMetricsBandwidthDailyResponseAppBandwidthUsageItem
impl Unpin for AppsGetMetricsBandwidthDailyResponseAppBandwidthUsageItem
impl UnsafeUnpin for AppsGetMetricsBandwidthDailyResponseAppBandwidthUsageItem
impl UnwindSafe for AppsGetMetricsBandwidthDailyResponseAppBandwidthUsageItem
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