AnyTokioStream

Enum AnyTokioStream 

Source
pub enum AnyTokioStream {
    Tcp(TcpStream),
    Unix(UnixStream),
}
Expand description

A connected stream-type socket, either TCP or Unix-domain, adapted for use with tokio.

AnyTokioStreams are usually obtained from a call to AnyTokioListener::accept. This type implements AsyncRead and AsyncWrite, and is used to communicate with the connected peer in much the same way as a tokio::net::TcpStream.

§Availability

All platforms, but the Unix variant is only available on Unix-like platforms. Converting a Unix-domain socket on Windows will result in an error.

Requires the tokio feature.

Variants§

§

Tcp(TcpStream)

A connected TCP socket.

§Availability

All platforms.

§

Unix(UnixStream)

A connected Unix-domain stream-type socket.

§Availability

Unix-like platforms only. Tokio currently does not support Unix-domain sockets on Windows.

Implementations§

Source§

impl AnyTokioStream

Source

pub fn local_addr(&self) -> Result<SockAddr>

Returns the local address that this socket is bound to.

This method delegates to tokio::net::TcpStream::local_addr or tokio::net::UnixStream::local_addr, as appropriate.

Source

pub fn peer_addr(&self) -> Result<SockAddr>

Returns the remote address that this socket is connected to.

This method delegates to tokio::net::TcpStream::peer_addr or tokio::net::UnixStream::peer_addr, as appropriate.

Trait Implementations§

Source§

impl AsFd for AnyTokioStream

Available on non-Windows only.
Source§

fn as_fd(&self) -> BorrowedFd<'_>

Borrows the file descriptor. Read more
Source§

impl AsRawFd for AnyTokioStream

Available on non-Windows only.
Source§

fn as_raw_fd(&self) -> RawFd

Extracts the raw file descriptor. Read more
Source§

impl AsyncRead for AnyTokioStream

Source§

fn poll_read( self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &mut ReadBuf<'_>, ) -> Poll<Result<()>>

Attempts to read from the AsyncRead into buf. Read more
Source§

impl AsyncWrite for AnyTokioStream

Source§

fn poll_write( self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &[u8], ) -> Poll<Result<usize, Error>>

Attempt to write bytes from buf into the object. Read more
Source§

fn poll_flush( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<(), Error>>

Attempts to flush the object, ensuring that any buffered data reach their destination. Read more
Source§

fn poll_shutdown( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<(), Error>>

Initiates or attempts to shut down this writer, returning success when the I/O connection has completely shut down. Read more
Source§

fn poll_write_vectored( self: Pin<&mut Self>, cx: &mut Context<'_>, bufs: &[IoSlice<'_>], ) -> Poll<Result<usize, Error>>

Like poll_write, except that it writes from a slice of buffers. Read more
Source§

fn is_write_vectored(&self) -> bool

Determines if this writer has an efficient poll_write_vectored implementation. Read more
Source§

impl Debug for AnyTokioStream

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<TcpStream> for AnyTokioStream

Source§

fn from(original: TcpStream) -> AnyTokioStream

Converts to this type from the input type.
Source§

impl From<UnixStream> for AnyTokioStream

Source§

fn from(original: UnixStream) -> AnyTokioStream

Converts to this type from the input type.
Source§

impl TryFrom<AnyStdSocket> for AnyTokioStream

Source§

type Error = IntoTokioError

The type returned in the event of a conversion error.
Source§

fn try_from(socket: AnyStdSocket) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<AnyTokioStream> for Socket

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(socket: AnyTokioStream) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<Socket> for AnyTokioStream

Source§

type Error = IntoTokioError

The type returned in the event of a conversion error.
Source§

fn try_from(socket: Socket) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'pin> Unpin for AnyTokioStream
where PinnedFieldsOf<__AnyTokioStream<'pin>>: Unpin,

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.