[][src]Struct tokio_io_timeout::TimeoutStream

pub struct TimeoutStream<S>(_);

A stream which applies read and write timeouts to an inner stream.

Methods

impl<S> TimeoutStream<S> where
    S: AsyncRead + AsyncWrite + Unpin
[src]

pub fn new(stream: S) -> TimeoutStream<S>[src]

Returns a new TimeoutStream wrapping the specified stream.

There is initially no read or write timeout.

pub fn read_timeout(&self) -> Option<Duration>[src]

Returns the current read timeout.

pub fn set_read_timeout(&mut self, timeout: Option<Duration>)[src]

Sets the read timeout.

This will reset any pending read timeout.

pub fn write_timeout(&self) -> Option<Duration>[src]

Returns the current write timeout.

pub fn set_write_timeout(&mut self, timeout: Option<Duration>)[src]

Sets the write timeout.

This will reset any pending write timeout.

pub fn get_ref(&self) -> &S[src]

Returns a shared reference to the inner stream.

pub fn get_mut(&mut self) -> &mut S[src]

Returns a mutable reference to the inner stream.

pub fn into_inner(self) -> S[src]

Consumes the stream, returning the inner stream.

Trait Implementations

impl<S: Debug> Debug for TimeoutStream<S>[src]

impl<S> AsyncRead for TimeoutStream<S> where
    S: AsyncRead + AsyncWrite + Unpin
[src]

impl<S> AsyncWrite for TimeoutStream<S> where
    S: AsyncRead + AsyncWrite + Unpin
[src]

Auto Trait Implementations

impl<S> Unpin for TimeoutStream<S> where
    S: Unpin

impl<S> Sync for TimeoutStream<S> where
    S: Sync

impl<S> Send for TimeoutStream<S> where
    S: Send

impl<S> !UnwindSafe for TimeoutStream<S>

impl<S> !RefUnwindSafe for TimeoutStream<S>

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]