[][src]Struct fd_queue::mio::UnixStream

pub struct UnixStream { /* fields omitted */ }

A non-blocking Unix stream socket with support for passing RawFd.

Implementations

impl UnixStream[src]

pub fn connect(path: impl AsRef<Path>) -> Result<UnixStream>[src]

Connects to the socket named by path.

Note that this is synchronous.

pub fn pair() -> Result<(UnixStream, UnixStream)>[src]

Creates an unnamed pair of connected sockets.

pub fn local_addr(&self) -> Result<SocketAddr>[src]

Returns the socket address of the local half of this connection.

pub fn peer_addr(&self) -> Result<SocketAddr>[src]

Returns the socket address of the remote half of this connections.

pub fn take_error(&self) -> Result<Option<Error>>[src]

Returns the value of the SO_ERROR option.

pub fn shutdown(&self, how: Shutdown) -> Result<()>[src]

Shuts down the read, write, or both halves of the connection.

This function will cause all pending and future I/O calls on the specified portions to immediately return with an appropriate value (see the documentation of Shutdown).

Trait Implementations

impl AsRawFd for UnixStream[src]

impl Debug for UnixStream[src]

impl DequeueFd for UnixStream[src]

impl EnqueueFd for UnixStream[src]

impl Evented for UnixStream[src]

impl FromRawFd for UnixStream[src]

Create a UnixStream from a RawFd.

This does not change the RawFd into non-blocking mode. It assumes that any such required change has already been done.

impl IntoRawFd for UnixStream[src]

impl Read for UnixStream[src]

impl TryFrom<UnixStream> for UnixStream[src]

type Error = Error

The type returned in the event of a conversion error.

impl Write for UnixStream[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.