[][src]Struct shh::Shh

pub struct Shh<Impl, Device> where
    Impl: Divert<Device>, 
{ /* fields omitted */ }

A structure holding the redirection data.

Shh implements io::Read, with all captured output able to be read back out.

Trait Implementations

impl<I: Divert<D>, D> Drop for Shh<I, D>[src]

impl<I: Divert<D> + ShhRead, D> Read for Shh<I, D>[src]

impl<I: Divert<D>, D> Send for Shh<I, D>[src]

Unsafe because of the original: Fdandle. This is retrieved from os and does not need cleaning up.

Auto Trait Implementations

impl<Impl, Device> RefUnwindSafe for Shh<Impl, Device> where
    Device: RefUnwindSafe,
    Impl: RefUnwindSafe

impl<Impl, Device> Sync for Shh<Impl, Device> where
    Device: Sync,
    Impl: Sync

impl<Impl, Device> Unpin for Shh<Impl, Device> where
    Device: Unpin,
    Impl: Unpin

impl<Impl, Device> UnwindSafe for Shh<Impl, Device> where
    Device: UnwindSafe,
    Impl: 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.