Struct runnel::RunnelIoe[][src]

pub struct RunnelIoe { /* fields omitted */ }

The set of StreamIn, StreamOut, StreamErr.

Implementations

impl RunnelIoe[src]

pub fn new(
    a_in: Box<dyn StreamIn>,
    a_out: Box<dyn StreamOut>,
    a_err: Box<dyn StreamErr>
) -> RunnelIoe
[src]

create RunnelIoe. use RunnelIoeBuilder.

pub fn pin(&self) -> &dyn StreamIn

Notable traits for &dyn StreamIn

impl Read for &dyn StreamIn
[src]

get pluggable stream in

pub fn pout(&self) -> &dyn StreamOut

Notable traits for &dyn StreamOut

impl Write for &dyn StreamOut
[src]

get pluggable stream out

pub fn perr(&self) -> &dyn StreamErr

Notable traits for &dyn StreamErr

impl Write for &dyn StreamErr
[src]

get pluggable stream err

Trait Implementations

impl Debug for RunnelIoe[src]

Auto Trait Implementations

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.