[][src]Struct futures_lite::io::Chain

pub struct Chain<T, U> { /* fields omitted */ }

Reader for the AsyncReadExt::chain() method.

Implementations

impl<T, U> Chain<T, U>[src]

pub fn get_ref(&self) -> (&T, &U)[src]

Gets references to the underlying readers.

Examples

use futures_lite::*;

let r1 = io::Cursor::new(b"hello");
let r2 = io::Cursor::new(b"world");

let reader = r1.chain(r2);
let (r1, r2) = reader.get_ref();

pub fn get_mut(&mut self) -> (&mut T, &mut U)[src]

Gets mutable references to the underlying readers.

Examples

use futures_lite::*;

let r1 = io::Cursor::new(b"hello");
let r2 = io::Cursor::new(b"world");

let mut reader = r1.chain(r2);
let (r1, r2) = reader.get_mut();

pub fn into_inner(self) -> (T, U)[src]

Unwraps the adapter, returning the underlying readers.

Examples

use futures_lite::*;

let r1 = io::Cursor::new(b"hello");
let r2 = io::Cursor::new(b"world");

let reader = r1.chain(r2);
let (r1, r2) = reader.into_inner();

Trait Implementations

impl<T: AsyncBufRead, U: AsyncBufRead> AsyncBufRead for Chain<T, U>[src]

impl<T: AsyncRead, U: AsyncRead> AsyncRead for Chain<T, U>[src]

impl<T: Debug, U: Debug> Debug for Chain<T, U>[src]

impl<'__pin, T, U> Unpin for Chain<T, U> where
    __Origin<'__pin, T, U>: Unpin
[src]

Auto Trait Implementations

impl<T, U> RefUnwindSafe for Chain<T, U> where
    T: RefUnwindSafe,
    U: RefUnwindSafe

impl<T, U> Send for Chain<T, U> where
    T: Send,
    U: Send

impl<T, U> Sync for Chain<T, U> where
    T: Sync,
    U: Sync

impl<T, U> UnwindSafe for Chain<T, U> where
    T: UnwindSafe,
    U: UnwindSafe

Blanket Implementations

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

impl<R> AsyncBufReadExt for R where
    R: AsyncBufRead + ?Sized
[src]

impl<R> AsyncReadExt for R where
    R: AsyncRead + ?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, 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.