[][src]Struct wf2_core::context::ContextOverrides

pub struct ContextOverrides {
    pub run_mode: RunMode,
    pub php_version: PHP,
    pub cwd: PathBuf,
    pub name: String,
    pub pv: Option<String>,
    pub term: Term,
    pub debug: bool,
    pub uid: u32,
    pub gid: u32,
}

A subset of fields from above that should be safe to override

Fields

run_mode: RunModephp_version: PHPcwd: PathBufname: Stringpv: Option<String>term: Termdebug: booluid: u32gid: u32

Trait Implementations

impl Debug for ContextOverrides[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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