pub struct ZabbixHost {
pub host_id: String,
pub host: String,
pub status: HostStatus,
}
Expand description
API Object: https://www.zabbix.com/documentation/6.0/en/manual/api/reference/host/object
Fields§
§host_id: String
§host: String
§status: HostStatus
Trait Implementations§
Source§impl Clone for ZabbixHost
impl Clone for ZabbixHost
Source§fn clone(&self) -> ZabbixHost
fn clone(&self) -> ZabbixHost
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 ZabbixHost
impl Debug for ZabbixHost
Source§impl<'de> Deserialize<'de> for ZabbixHost
impl<'de> Deserialize<'de> for ZabbixHost
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 PartialEq for ZabbixHost
impl PartialEq for ZabbixHost
impl StructuralPartialEq for ZabbixHost
Auto Trait Implementations§
impl Freeze for ZabbixHost
impl RefUnwindSafe for ZabbixHost
impl Send for ZabbixHost
impl Sync for ZabbixHost
impl Unpin for ZabbixHost
impl UnwindSafe for ZabbixHost
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