pub struct CommonUnixListener(/* private fields */);
Expand description
A cross-platform wrapper around a tokio::net::UnixListener
or a Windows
equivalent. Using this type allows code using Unix sockets to be written
once and run on both Unix and Windows.
Implementations§
Trait Implementations§
Source§impl Debug for CommonUnixListener
impl Debug for CommonUnixListener
Auto Trait Implementations§
impl !Freeze for CommonUnixListener
impl RefUnwindSafe for CommonUnixListener
impl Send for CommonUnixListener
impl Sync for CommonUnixListener
impl Unpin for CommonUnixListener
impl UnwindSafe for CommonUnixListener
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