[−][src]Struct tokio::net::unix::UnixListener
A Unix socket which can accept connections from other Unix sockets.
Methods
impl UnixListener
[src]
impl UnixListener
pub fn bind<P>(path: P) -> Result<UnixListener, Error> where
P: AsRef<Path>,
[src]
pub fn bind<P>(path: P) -> Result<UnixListener, Error> where
P: AsRef<Path>,
Creates a new UnixListener
bound to the specified path.
pub fn from_std(
listener: UnixListener,
handle: &Handle
) -> Result<UnixListener, Error>
[src]
pub fn from_std(
listener: UnixListener,
handle: &Handle
) -> Result<UnixListener, Error>
Consumes a UnixListener
in the standard library and returns a
nonblocking UnixListener
from this crate.
The returned listener will be associated with the given event loop
specified by handle
and is ready to perform I/O.
pub fn local_addr(&self) -> Result<SocketAddr, Error>
[src]
pub fn local_addr(&self) -> Result<SocketAddr, Error>
Returns the local socket address of this listener.
pub fn poll_read_ready(&self, ready: Ready) -> Result<Async<Ready>, Error>
[src]
pub fn poll_read_ready(&self, ready: Ready) -> Result<Async<Ready>, Error>
Test whether this socket is ready to be read or not.
pub fn take_error(&self) -> Result<Option<Error>, Error>
[src]
pub fn take_error(&self) -> Result<Option<Error>, Error>
Returns the value of the SO_ERROR
option.
pub fn poll_accept(&self) -> Result<Async<(UnixStream, SocketAddr)>, Error>
[src]
pub fn poll_accept(&self) -> Result<Async<(UnixStream, SocketAddr)>, Error>
Attempt to accept a connection and create a new connected UnixStream
if successful.
This function will attempt an accept operation, but will not block waiting for it to complete. If the operation would block then a "would block" error is returned. Additionally, if this method would block, it registers the current task to receive a notification when it would otherwise not block.
Note that typically for simple usage it's easier to treat incoming
connections as a Stream
of UnixStream
s with the incoming
method
below.
Panics
This function will panic if it is called outside the context of a
future's task. It's recommended to only call this from the
implementation of a Future::poll
, if necessary.
pub fn poll_accept_std(&self) -> Result<Async<(UnixStream, SocketAddr)>, Error>
[src]
pub fn poll_accept_std(&self) -> Result<Async<(UnixStream, SocketAddr)>, Error>
Attempt to accept a connection and create a new connected UnixStream
if successful.
This function is the same as poll_accept
above except that it returns a
mio_uds::UnixStream
instead of a tokio_udp::UnixStream
. This in turn
can then allow for the stream to be associated with a different reactor
than the one this UnixListener
is associated with.
This function will attempt an accept operation, but will not block waiting for it to complete. If the operation would block then a "would block" error is returned. Additionally, if this method would block, it registers the current task to receive a notification when it would otherwise not block.
Note that typically for simple usage it's easier to treat incoming
connections as a Stream
of UnixStream
s with the incoming
method
below.
Panics
This function will panic if it is called outside the context of a
future's task. It's recommended to only call this from the
implementation of a Future::poll
, if necessary.
pub fn incoming(self) -> Incoming
[src]
pub fn incoming(self) -> Incoming
Consumes this listener, returning a stream of the sockets this listener accepts.
This method returns an implementation of the Stream
trait which
resolves to the sockets the are accepted on this listener.
Trait Implementations
impl Debug for UnixListener
[src]
impl Debug for UnixListener
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl AsRawFd for UnixListener
[src]
impl AsRawFd for UnixListener
Auto Trait Implementations
impl Send for UnixListener
impl Send for UnixListener
impl Sync for UnixListener
impl Sync for UnixListener
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
ⓘImportant traits for &'a mut Wfn borrow(&self) -> &T
[src]
fn borrow(&self) -> &T
Immutably borrows from an owned value. Read more
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
ⓘImportant traits for &'a mut Wfn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
try_from
)Performs the conversion.
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more
impl<T> Erased for T
[src]
impl<T> Erased for T