pub enum Address {
Inet(SocketAddr),
Inet6(SocketAddr),
Link(MacAddr),
// some variants omitted
}
Expand description
Network interface address.
Variants§
Inet(SocketAddr)
IPv4 Internet protocols
Inet6(SocketAddr)
IPv6 Internet protocols
Link(MacAddr)
Link level interface
Trait Implementations§
impl Copy for Address
impl Eq for Address
impl StructuralPartialEq for Address
Auto Trait Implementations§
impl Freeze for Address
impl RefUnwindSafe for Address
impl Send for Address
impl Sync for Address
impl Unpin for Address
impl UnwindSafe for Address
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