pub struct ZabbixMetric {
pub host: String,
pub key: String,
pub value: String,
/* private fields */
}
Expand description
Fields§
§host: String
§key: String
§value: String
Implementations§
Trait Implementations§
Source§impl Clone for ZabbixMetric
impl Clone for ZabbixMetric
Source§fn clone(&self) -> ZabbixMetric
fn clone(&self) -> ZabbixMetric
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 ZabbixMetric
impl Debug for ZabbixMetric
Source§impl<'de> Deserialize<'de> for ZabbixMetric
impl<'de> Deserialize<'de> for ZabbixMetric
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 ZabbixMetric
impl RefUnwindSafe for ZabbixMetric
impl Send for ZabbixMetric
impl Sync for ZabbixMetric
impl Unpin for ZabbixMetric
impl UnwindSafe for ZabbixMetric
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