Struct mio_uds::UnixListener
source · [−]pub struct UnixListener { /* private fields */ }
Expand description
A structure representing a Unix domain socket server.
This listener can be used to accept new streams connected to a remote
endpoint, through which the read
and write
methods can be used to
communicate.
Implementations
sourceimpl UnixListener
impl UnixListener
sourcepub fn bind<P: AsRef<Path>>(path: P) -> Result<UnixListener>
pub fn bind<P: AsRef<Path>>(path: P) -> Result<UnixListener>
Creates a new UnixListener
bound to the specified socket.
sourcepub fn from_listener(stream: UnixListener) -> Result<UnixListener>
pub fn from_listener(stream: UnixListener) -> Result<UnixListener>
Consumes a standard library UnixListener
and returns a wrapped
UnixListener
compatible with mio.
The returned stream is moved into nonblocking mode and is otherwise ready to get associated with an event loop.
sourcepub fn accept(&self) -> Result<Option<(UnixStream, SocketAddr)>>
pub fn accept(&self) -> Result<Option<(UnixStream, SocketAddr)>>
Accepts a new incoming connection to this listener.
When established, the corresponding UnixStream
and the remote peer’s
address will be returned as Ok(Some(...))
. If there is no connection
waiting to be accepted, then Ok(None)
is returned.
If an error happens while accepting, Err
is returned.
sourcepub fn accept_std(&self) -> Result<Option<(UnixStream, SocketAddr)>>
pub fn accept_std(&self) -> Result<Option<(UnixStream, SocketAddr)>>
Accepts a new incoming connection to this listener.
This method is the same as accept
, except that it returns a net::UnixStream
in blocking mode
which isn’t bound to a mio
type. This can later be converted to a mio
type, if
necessary.
If an error happens while accepting, Err
is returned.
sourcepub fn try_clone(&self) -> Result<UnixListener>
pub fn try_clone(&self) -> Result<UnixListener>
Creates a new independently owned handle to the underlying socket.
The returned UnixListener
is a reference to the same socket that this
object references. Both handles can be used to accept incoming
connections and options set on one listener will affect the other.
sourcepub fn local_addr(&self) -> Result<SocketAddr>
pub fn local_addr(&self) -> Result<SocketAddr>
Returns the local socket address of this listener.
sourcepub fn take_error(&self) -> Result<Option<Error>>
pub fn take_error(&self) -> Result<Option<Error>>
Returns the value of the SO_ERROR
option.
Trait Implementations
sourceimpl AsRawFd for UnixListener
impl AsRawFd for UnixListener
sourceimpl Debug for UnixListener
impl Debug for UnixListener
sourceimpl Evented for UnixListener
impl Evented for UnixListener
sourcefn register(
&self,
poll: &Poll,
token: Token,
events: Ready,
opts: PollOpt
) -> Result<()>
fn register(
&self,
poll: &Poll,
token: Token,
events: Ready,
opts: PollOpt
) -> Result<()>
Register self
with the given Poll
instance. Read more
sourceimpl FromRawFd for UnixListener
impl FromRawFd for UnixListener
sourceunsafe fn from_raw_fd(fd: i32) -> UnixListener
unsafe fn from_raw_fd(fd: i32) -> UnixListener
Constructs a new instance of Self
from the given raw file
descriptor. Read more
sourceimpl IntoRawFd for UnixListener
impl IntoRawFd for UnixListener
sourcefn into_raw_fd(self) -> i32
fn into_raw_fd(self) -> i32
Consumes this object, returning the raw underlying file descriptor. Read more
Auto Trait Implementations
impl RefUnwindSafe for UnixListener
impl Send for UnixListener
impl Sync for UnixListener
impl Unpin for UnixListener
impl UnwindSafe for UnixListener
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more