pub struct PortProbeDetail {
pub local_ip_details: Option<ActionLocalIpDetails>,
pub local_port_details: Option<ActionLocalPortDetails>,
pub remote_ip_details: Option<ActionRemoteIpDetails>,
}Expand description
A port scan that was part of the port probe. For each scan, PortProbeDetails provides information about the local IP address and port that were scanned, and the remote IP address that the scan originated from.
Fields§
§local_ip_details: Option<ActionLocalIpDetails>Provides information about the IP address where the scanned port is located.
local_port_details: Option<ActionLocalPortDetails>Provides information about the port that was scanned.
remote_ip_details: Option<ActionRemoteIpDetails>Provides information about the remote IP address that performed the scan.
Trait Implementations§
Source§impl Clone for PortProbeDetail
impl Clone for PortProbeDetail
Source§fn clone(&self) -> PortProbeDetail
fn clone(&self) -> PortProbeDetail
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 PortProbeDetail
impl Debug for PortProbeDetail
Source§impl Default for PortProbeDetail
impl Default for PortProbeDetail
Source§fn default() -> PortProbeDetail
fn default() -> PortProbeDetail
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PortProbeDetail
impl<'de> Deserialize<'de> for PortProbeDetail
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 PortProbeDetail
impl PartialEq for PortProbeDetail
Source§impl Serialize for PortProbeDetail
impl Serialize for PortProbeDetail
impl StructuralPartialEq for PortProbeDetail
Auto Trait Implementations§
impl Freeze for PortProbeDetail
impl RefUnwindSafe for PortProbeDetail
impl Send for PortProbeDetail
impl Sync for PortProbeDetail
impl Unpin for PortProbeDetail
impl UnwindSafe for PortProbeDetail
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