Struct sysutil::NetworkRoute
source · pub struct NetworkRoute {
pub routeType: RouteType,
pub localAddress: String,
pub localPort: u16,
pub remoteAddress: String,
pub remotePort: u16,
}Expand description
Represents a network route and its type, containing local address+port and remote address+port
Fields§
§routeType: RouteType§localAddress: String§localPort: u16§remoteAddress: String§remotePort: u16Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for NetworkRoute
impl Send for NetworkRoute
impl Sync for NetworkRoute
impl Unpin for NetworkRoute
impl UnwindSafe for NetworkRoute
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