[−][src]Struct mio_uds::UnixListener
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.
Methods
impl UnixListener
[src]
pub fn bind<P: AsRef<Path>>(path: P) -> Result<UnixListener>
[src]
Creates a new UnixListener
bound to the specified socket.
pub fn from_listener(stream: UnixListener) -> Result<UnixListener>
[src]
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.
pub fn accept(&self) -> Result<Option<(UnixStream, SocketAddr)>>
[src]
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.
pub fn accept_std(&self) -> Result<Option<(UnixStream, SocketAddr)>>
[src]
Accepts a new incoming connection to this listener.
This method is the same as accept
, except that it returns a UDP socket 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.
pub fn try_clone(&self) -> Result<UnixListener>
[src]
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.
pub fn local_addr(&self) -> Result<SocketAddr>
[src]
Returns the local socket address of this listener.
pub fn take_error(&self) -> Result<Option<Error>>
[src]
Returns the value of the SO_ERROR
option.
Trait Implementations
impl AsRawFd for UnixListener
[src]
impl Debug for UnixListener
[src]
impl Evented for UnixListener
[src]
fn register(
&self,
poll: &Poll,
token: Token,
events: Ready,
opts: PollOpt
) -> Result<()>
[src]
&self,
poll: &Poll,
token: Token,
events: Ready,
opts: PollOpt
) -> Result<()>
fn reregister(
&self,
poll: &Poll,
token: Token,
events: Ready,
opts: PollOpt
) -> Result<()>
[src]
&self,
poll: &Poll,
token: Token,
events: Ready,
opts: PollOpt
) -> Result<()>
fn deregister(&self, poll: &Poll) -> Result<()>
[src]
impl FromRawFd for UnixListener
[src]
unsafe fn from_raw_fd(fd: i32) -> UnixListener
[src]
impl IntoRawFd for UnixListener
[src]
fn into_raw_fd(self) -> i32
[src]
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
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,