pub struct GoogleCloudApigeeV1OptimizedStatsNode {
pub data: Option<Vec<Value>>,
}Expand description
Encapsulates a data node as represented below: { "identifier": { "names": [ "apiproxy" ], "values": [ "sirjee" ] }, "metric": [ { "env": "prod", "name": "sum(message_count)", "values": [ 36.0 ] } ] } or { "env": "prod", "name": "sum(message_count)", "values": [ 36.0 ] } Depending on whether a dimension is present in the query or not the data node type can be a simple metric value or dimension identifier with list of metrics.
This type is not used in any activity, and only used as part of another schema.
Fields§
§data: Option<Vec<Value>>List of data values.
Trait Implementations§
Source§impl Clone for GoogleCloudApigeeV1OptimizedStatsNode
impl Clone for GoogleCloudApigeeV1OptimizedStatsNode
Source§fn clone(&self) -> GoogleCloudApigeeV1OptimizedStatsNode
fn clone(&self) -> GoogleCloudApigeeV1OptimizedStatsNode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for GoogleCloudApigeeV1OptimizedStatsNode
impl Default for GoogleCloudApigeeV1OptimizedStatsNode
Source§fn default() -> GoogleCloudApigeeV1OptimizedStatsNode
fn default() -> GoogleCloudApigeeV1OptimizedStatsNode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleCloudApigeeV1OptimizedStatsNode
impl<'de> Deserialize<'de> for GoogleCloudApigeeV1OptimizedStatsNode
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
impl Part for GoogleCloudApigeeV1OptimizedStatsNode
Auto Trait Implementations§
impl Freeze for GoogleCloudApigeeV1OptimizedStatsNode
impl RefUnwindSafe for GoogleCloudApigeeV1OptimizedStatsNode
impl Send for GoogleCloudApigeeV1OptimizedStatsNode
impl Sync for GoogleCloudApigeeV1OptimizedStatsNode
impl Unpin for GoogleCloudApigeeV1OptimizedStatsNode
impl UnwindSafe for GoogleCloudApigeeV1OptimizedStatsNode
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