[][src]Struct qiniu_multipart::mock::StdoutTee

pub struct StdoutTee<'s, W> { /* fields omitted */ }

A Write adapter that duplicates all data written to the inner writer as well as stdout.

Implementations

impl<'s, W> StdoutTee<'s, W>[src]

pub fn new(inner: W, stdout: &'s Stdout) -> Self[src]

Constructor

Trait Implementations

impl<'s, W: Write> Write for StdoutTee<'s, W>[src]

Auto Trait Implementations

impl<'s, W> RefUnwindSafe for StdoutTee<'s, W> where
    W: RefUnwindSafe

impl<'s, W> !Send for StdoutTee<'s, W>

impl<'s, W> Sync for StdoutTee<'s, W> where
    W: Sync

impl<'s, W> Unpin for StdoutTee<'s, W> where
    W: Unpin

impl<'s, W> UnwindSafe for StdoutTee<'s, W> where
    W: UnwindSafe

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, 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.

impl<T> Typeable for T where
    T: Any

impl<T> UnsafeAny for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<W> WriteBytesExt for W where
    W: Write + ?Sized