pub struct PrometheusData {
pub result_type: String,
pub result: Vec<PrometheusResult>,
}Expand description
Prometheus data
Fields§
§result_type: String§result: Vec<PrometheusResult>Trait Implementations§
Source§impl Debug for PrometheusData
impl Debug for PrometheusData
Source§impl<'de> Deserialize<'de> for PrometheusData
impl<'de> Deserialize<'de> for PrometheusData
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 PrometheusData
impl RefUnwindSafe for PrometheusData
impl Send for PrometheusData
impl Sync for PrometheusData
impl Unpin for PrometheusData
impl UnwindSafe for PrometheusData
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