[][src]Struct snowchains::Context

pub struct Context<I: Input, O: AttemptEnableColor + ModifyTermProps, E: AttemptEnableColor + ModifyTermProps> {
    pub cwd: AbsPathBuf,
    pub login_retries: Option<u32>,
    pub stdin: I,
    pub stdout: O,
    pub stderr: E,
}

Fields

cwd: AbsPathBuflogin_retries: Option<u32>stdin: Istdout: Ostderr: E

Trait Implementations

impl<I: Debug + Input, O: Debug + AttemptEnableColor + ModifyTermProps, E: Debug + AttemptEnableColor + ModifyTermProps> Debug for Context<I, O, E>[src]

Auto Trait Implementations

impl<I, O, E> RefUnwindSafe for Context<I, O, E> where
    E: RefUnwindSafe,
    I: RefUnwindSafe,
    O: RefUnwindSafe

impl<I, O, E> Send for Context<I, O, E> where
    E: Send,
    I: Send,
    O: Send

impl<I, O, E> Sync for Context<I, O, E> where
    E: Sync,
    I: Sync,
    O: Sync

impl<I, O, E> Unpin for Context<I, O, E> where
    E: Unpin,
    I: Unpin,
    O: Unpin

impl<I, O, E> UnwindSafe for Context<I, O, E> where
    E: UnwindSafe,
    I: UnwindSafe,
    O: 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> Same<T> for T

type Output = T

Should always be Self

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, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err

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