pub struct PtySpawnRequest {
pub argv: Vec<String>,
pub cwd: Option<PathBuf>,
pub env: Vec<(String, String)>,
pub clear_inherited_env: bool,
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)>Environment variables to add or override for the spawned process.
clear_inherited_env: boolWhether to start from an empty environment instead of inheriting the daemon’s environment.
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 spawn request with default size and inherited 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.
Trait Implementations§
Source§impl Clone for PtySpawnRequest
impl Clone for PtySpawnRequest
Source§fn clone(&self) -> PtySpawnRequest
fn clone(&self) -> PtySpawnRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
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
Mutably borrows from an owned value. Read more
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>
Convert
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>
Convert
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)
Convert
&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)
Convert
&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>
Converts
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>
Converts
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