pub struct PtySpawnRequest {
pub argv: Vec<String>,
pub cwd: Option<PathBuf>,
pub env: Vec<(String, String)>,
pub clear_inherited_env: bool,
pub environment_policy: EnvironmentPolicy,
pub rows: u16,
pub cols: u16,
pub originator: Option<String>,
}Expand description
Request shape for spawning a daemon-owned PTY session.
Fields§
§argv: Vec<String>Command and arguments to execute inside the PTY.
cwd: Option<PathBuf>Working directory for the spawned process.
env: Vec<(String, String)>Explicit environment variables applied after the selected base.
clear_inherited_env: boolDeprecated wire-compatibility bit. Prefer Self::environment_policy.
environment_policy: EnvironmentPolicyBase environment used before applying Self::env.
rows: u16Initial terminal row count.
cols: u16Initial terminal column count.
originator: Option<String>Optional caller-defined owner string used for listing and filtering sessions.
Implementations§
Source§impl PtySpawnRequest
impl PtySpawnRequest
Sourcepub fn new<S: Into<String>>(argv: impl IntoIterator<Item = S>) -> Self
pub fn new<S: Into<String>>(argv: impl IntoIterator<Item = S>) -> Self
Create a request with default size that snapshots the caller environment and replaces the daemon environment.
Sourcepub fn with_cwd(self, cwd: impl Into<PathBuf>) -> Self
pub fn with_cwd(self, cwd: impl Into<PathBuf>) -> Self
Set the working directory for the spawned process.
Sourcepub fn with_originator(self, originator: impl Into<String>) -> Self
pub fn with_originator(self, originator: impl Into<String>) -> Self
Set the caller-defined owner string for this session.
Sourcepub fn with_envs<I, K, V>(self, env: I) -> Self
pub fn with_envs<I, K, V>(self, env: I) -> Self
Replace the request’s explicit environment variables.
Sourcepub fn with_environment_policy(self, policy: EnvironmentPolicy) -> Self
pub fn with_environment_policy(self, policy: EnvironmentPolicy) -> Self
Select the base environment for this contained remote child. Auto
resolves to the contained-process default, Inherit.
Trait Implementations§
Source§impl Clone for PtySpawnRequest
impl Clone for PtySpawnRequest
Source§fn clone(&self) -> PtySpawnRequest
fn clone(&self) -> PtySpawnRequest
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementations§
impl Freeze for PtySpawnRequest
impl RefUnwindSafe for PtySpawnRequest
impl Send for PtySpawnRequest
impl Sync for PtySpawnRequest
impl Unpin for PtySpawnRequest
impl UnsafeUnpin for PtySpawnRequest
impl UnwindSafe for PtySpawnRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more