[][src]Struct romio::uds::UnixStream

pub struct UnixStream { /* fields omitted */ }

A structure representing a connected Unix socket.

This socket can be connected directly with UnixStream::connect or accepted from a listener with UnixListener::incoming. Additionally, a pair of anonymous Unix sockets can be created with UnixStream::pair.

Methods

impl UnixStream[src]

Important traits for ConnectFuture
pub fn connect(path: impl AsRef<Path>) -> ConnectFuture[src]

Connects to the socket named by path.

This function will create a new Unix socket and connect to the path specified, associating the returned stream with the default event loop's handle.

Examples

use romio::uds::UnixStream;

let stream = UnixStream::connect("/tmp/sock").await;

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

Creates an unnamed pair of connected sockets.

This function will create a pair of interconnected Unix sockets for communicating back and forth between one another. Each socket will be associated with the event loop whose handle is also provided.

Examples

use romio::uds::UnixStream;

let (sock1, sock2) = UnixStream::pair()?;

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

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

Examples

use romio::uds::UnixStream;

let stream = UnixStream::connect("/tmp/sock").await?;
let addr = stream.local_addr()?;

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

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

Examples

use romio::uds::UnixStream;

let stream = UnixStream::connect("/tmp/sock").await?;
let addr = stream.peer_addr()?;

pub fn peer_cred(&self) -> Result<UCred>[src]

Returns effective credentials of the process which called connect or socketpair.

Examples

use romio::uds::UnixStream;

let stream = UnixStream::connect("/tmp/sock").await?;
let cred = stream.peer_cred()?;

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

Shuts down the read, write, or both halves of this 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).

use romio::uds::UnixStream;
use std::net::Shutdown;

let stream = UnixStream::connect("/tmp/sock").await?;
stream.shutdown(Shutdown::Both)?;

Trait Implementations

impl Unpin for UnixStream[src]

impl Debug for UnixStream[src]

impl AsRawFd for UnixStream[src]

impl AsyncWriteReady for UnixStream[src]

type Ok = Ready

The type of successful values yielded by this trait.

type Err = Error

The type of failures yielded by this trait.

fn poll_write_ready(
    self: Pin<&mut Self>,
    cx: &mut Context
) -> Poll<Result<Self::Ok, Self::Err>>
[src]

Test whether this socket is ready to be written to or not.

impl AsyncReadReady for UnixStream[src]

type Ok = Ready

The type of successful values yielded by this trait.

type Err = Error

The type of failures yielded by this trait.

fn poll_read_ready(
    self: Pin<&mut Self>,
    cx: &mut Context
) -> Poll<Result<Self::Ok, Self::Err>>
[src]

Test whether this socket is ready to be read or not.

impl TakeError for UnixStream[src]

type Ok = Error

The type of successful values yielded by this trait.

type Err = Error

The type of failures yielded by this trait.

fn take_error(&self) -> Result<Option<Self::Ok>, Self::Err>[src]

Returns the value of the SO_ERROR option.

Examples

use romio::uds::UnixStream;
use romio::raw::TakeError;

let stream = UnixStream::connect("/tmp/sock").await?;
if let Ok(Some(err)) = stream.take_error() {
    println!("Got error: {:?}", err);
}

impl AsyncRead for UnixStream[src]

impl AsyncWrite for UnixStream[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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

impl<W> AsyncWriteExt for W where
    W: AsyncWrite + ?Sized
[src]

impl<R> AsyncReadExt for R where
    R: AsyncRead + ?Sized
[src]