Enum fire_stream::util::SocketAddr
source · pub enum SocketAddr {
V4(SocketAddrV4),
V6(SocketAddrV6),
Unix(SocketAddr),
}Expand description
SocketAddr struct equivalent to the one in stdlib but the unix::SocketAddr was added.
Variants§
Auto Trait Implementations§
impl RefUnwindSafe for SocketAddr
impl Send for SocketAddr
impl Sync for SocketAddr
impl Unpin for SocketAddr
impl UnwindSafe for SocketAddr
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