pub enum HostState {
Up,
Down,
Unknown,
Skipped,
}
Expand description
Represents the state of a host in an Nmap scan
Variants§
Up
Host is up and responding
Down
Host is down or not responding
Unknown
Host state could not be determined
Skipped
Host was skipped during scanning
Trait Implementations§
Source§impl<'de> Deserialize<'de> for HostState
impl<'de> Deserialize<'de> for HostState
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 StructuralPartialEq for HostState
Auto Trait Implementations§
impl Freeze for HostState
impl RefUnwindSafe for HostState
impl Send for HostState
impl Sync for HostState
impl Unpin for HostState
impl UnwindSafe for HostState
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