Skip to main content

SpawnEnv

Struct SpawnEnv 

Source
pub struct SpawnEnv {
    pub overrides: Vec<(String, String)>,
    pub cwd: Option<String>,
}
Expand description

A typed env + cwd override an embedder stamps on every child PTY. Applied by the spawn backend AFTER the inherited + fallback env, so each (key, value) here OVERRIDES whatever the backend defaulted.

Serialize/Deserialize so a tear-client can push the override across the daemon wire (Request::SetSpawnEnv) — closing the gap where the daemon-spawned child only saw the daemon’s own env, never the embedder’s capability projection (truecolor/terminfo).

Fields§

§overrides: Vec<(String, String)>

Env pairs that override the backend’s inherited/fallback env. Order is preserved; later duplicates win (the backend’s env vec is a positional list CommandBuilder walks in order).

§cwd: Option<String>

Working directory for the child. When Some, the spawn backend also stamps PWD=<dir> so a child shell’s $PWD matches its real cwd (the cwd-handshake hygiene). None leaves the backend’s cwd untouched.

Implementations§

Source§

impl SpawnEnv

Source

pub fn none() -> Self

An empty override — the backend’s inherited + fallback env is used verbatim (the pre-seam behaviour).

Source

pub fn from_overrides(overrides: Vec<(String, String)>) -> Self

Build from typed env pairs (the embedder’s capability projection) with no cwd override.

Source

pub fn with_cwd(self, cwd: Option<String>) -> Self

Set the working directory the child spawns in (and the PWD the backend stamps to match it).

Source

pub fn is_empty(&self) -> bool

Whether this override carries anything — an empty override lets the backend skip the apply pass entirely.

Source

pub fn apply_to(&self, env: &mut Vec<(String, String)>)

Apply this override onto a backend-built env vec IN PLACE: every override key replaces an existing entry (or pushes a new one), then PWD is reconciled with the cwd — stamped when a cwd is set, removed when it is not, so a child can never inherit a stale parent PWD. This is the ONE place the apply order is defined; both the in-process and daemon backends call it.

Trait Implementations§

Source§

impl Clone for SpawnEnv

Source§

fn clone(&self) -> SpawnEnv

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for SpawnEnv

Source§

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

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

impl Default for SpawnEnv

Source§

fn default() -> SpawnEnv

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

impl<'de> Deserialize<'de> for SpawnEnv

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Eq for SpawnEnv

Source§

impl PartialEq for SpawnEnv

Source§

fn eq(&self, other: &SpawnEnv) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for SpawnEnv

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for SpawnEnv

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, dest: *mut u8)

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

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

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.