pub struct SeriesListData {
pub result_type: String,
pub series: Vec<BTreeMap<String, String>>,
}Expand description
Response data for metric series.
Fields§
§result_type: StringResult type discriminator (always "series").
series: Vec<BTreeMap<String, String>>Series label sets.
Trait Implementations§
Source§impl Clone for SeriesListData
impl Clone for SeriesListData
Source§fn clone(&self) -> SeriesListData
fn clone(&self) -> SeriesListData
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 Debug for SeriesListData
impl Debug for SeriesListData
Source§impl<'de> Deserialize<'de> for SeriesListData
impl<'de> Deserialize<'de> for SeriesListData
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 SeriesListData
impl RefUnwindSafe for SeriesListData
impl Send for SeriesListData
impl Sync for SeriesListData
impl Unpin for SeriesListData
impl UnsafeUnpin for SeriesListData
impl UnwindSafe for SeriesListData
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