pub struct PortAllocationPattern {
pub pattern_type: AllocationPatternType,
pub base_port: u16,
pub stride: u16,
pub pool_boundaries: Option<(u16, u16)>,
pub confidence: f64,
}
Expand description
Detected port allocation pattern
Fields§
§pattern_type: AllocationPatternType
§base_port: u16
§stride: u16
§pool_boundaries: Option<(u16, u16)>
§confidence: f64
Trait Implementations§
Source§impl Clone for PortAllocationPattern
impl Clone for PortAllocationPattern
Source§fn clone(&self) -> PortAllocationPattern
fn clone(&self) -> PortAllocationPattern
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 PortAllocationPattern
impl Debug for PortAllocationPattern
Source§impl PartialEq for PortAllocationPattern
impl PartialEq for PortAllocationPattern
impl StructuralPartialEq for PortAllocationPattern
Auto Trait Implementations§
impl Freeze for PortAllocationPattern
impl RefUnwindSafe for PortAllocationPattern
impl Send for PortAllocationPattern
impl Sync for PortAllocationPattern
impl Unpin for PortAllocationPattern
impl UnwindSafe for PortAllocationPattern
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