pub struct SshProcessHandle {
pub target: String,
pub leader_pid: u32,
pub process_group: u32,
pub leader_start_time_ticks: u64,
pub stdout: PathBuf,
pub stderr: PathBuf,
pub container: Option<String>,
}Fields§
§target: String§leader_pid: u32§process_group: u32§leader_start_time_ticks: u64§stdout: PathBuf§stderr: PathBuf§container: Option<String>The container this process launched, when the command is a containerized substitution: the daemon-owned cleanup handle the process-group kill cannot reach ([[RFC-0003:C-RUNTIME-WORKFLOWS]]).
Trait Implementations§
Source§impl Clone for SshProcessHandle
impl Clone for SshProcessHandle
Source§fn clone(&self) -> SshProcessHandle
fn clone(&self) -> SshProcessHandle
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 moreSource§impl Debug for SshProcessHandle
impl Debug for SshProcessHandle
Source§impl<'de> Deserialize<'de> for SshProcessHandle
impl<'de> Deserialize<'de> for SshProcessHandle
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for SshProcessHandle
Source§impl PartialEq for SshProcessHandle
impl PartialEq for SshProcessHandle
Source§impl Serialize for SshProcessHandle
impl Serialize for SshProcessHandle
impl StructuralPartialEq for SshProcessHandle
Auto Trait Implementations§
impl Freeze for SshProcessHandle
impl RefUnwindSafe for SshProcessHandle
impl Send for SshProcessHandle
impl Sync for SshProcessHandle
impl Unpin for SshProcessHandle
impl UnsafeUnpin for SshProcessHandle
impl UnwindSafe for SshProcessHandle
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