pub struct PortSet {
pub psid: u16,
pub start_port: u16,
pub port_count: u16,
pub available_ports: Vec<u16>,
}
Expand description
Calculated port set for a MAP customer
Fields§
§psid: u16
Port Set Identifier
start_port: u16
Starting port in the set
port_count: u16
Number of ports in the set
available_ports: Vec<u16>
List of available ports
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PortSet
impl RefUnwindSafe for PortSet
impl Send for PortSet
impl Sync for PortSet
impl Unpin for PortSet
impl UnwindSafe for PortSet
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