gix_command

Struct Context

source
pub struct Context {
    pub git_dir: Option<PathBuf>,
    pub worktree_dir: Option<PathBuf>,
    pub no_replace_objects: Option<bool>,
    pub ref_namespace: Option<BString>,
    pub literal_pathspecs: Option<bool>,
    pub glob_pathspecs: Option<bool>,
    pub icase_pathspecs: Option<bool>,
    pub stderr: Option<bool>,
}
Expand description

Additional information that is relevant to spawned processes, which typically receive a wealth of contextual information when spawned from git.

See the git source code for details.

Fields§

§git_dir: Option<PathBuf>

The .git directory that contains the repository.

If set, it will be used to set the GIT_DIR environment variable.

§worktree_dir: Option<PathBuf>

Set the GIT_WORK_TREE environment variable with the given path.

§no_replace_objects: Option<bool>

If true, set GIT_NO_REPLACE_OBJECTS to 1, which turns off object replacements, or 0 otherwise. If None, the variable won’t be set.

§ref_namespace: Option<BString>

Set the GIT_NAMESPACE variable with the given value, effectively namespacing all operations on references.

§literal_pathspecs: Option<bool>

If true, set GIT_LITERAL_PATHSPECS to 1, which makes globs literal and prefixes as well, or 0 otherwise. If None, the variable won’t be set.

§glob_pathspecs: Option<bool>

If true, set GIT_GLOB_PATHSPECS to 1, which lets wildcards not match the / character, and equals the :(glob) prefix. If false, set GIT_NOGLOB_PATHSPECS to 1 which lets globs match only themselves. If None, the variable won’t be set.

§icase_pathspecs: Option<bool>

If true, set GIT_ICASE_PATHSPECS to 1, to let patterns match case-insensitively, or 0 otherwise. If None, the variable won’t be set.

§stderr: Option<bool>

If true, inherit stderr just like it’s the default when spawning processes. If false, suppress all stderr output. If not None, this will override any value set with Prepare::stderr().

Trait Implementations§

source§

impl Clone for Context

source§

fn clone(&self) -> Context

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Context

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Context

source§

fn default() -> Context

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.