pub struct PortCheck {
pub host: String,
pub port: u16,
pub open: bool,
}Expand description
Result of probing one host:port (from cache or live TCP connect).
Fields§
§host: String§port: u16§open: boolTrait Implementations§
impl Eq for PortCheck
impl StructuralPartialEq for PortCheck
Auto Trait Implementations§
impl Freeze for PortCheck
impl RefUnwindSafe for PortCheck
impl Send for PortCheck
impl Sync for PortCheck
impl Unpin for PortCheck
impl UnsafeUnpin for PortCheck
impl UnwindSafe for PortCheck
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