pub struct HostProcessHandle {
pub leader_pid: u32,
pub process_group: u32,
pub leader_start_time_ticks: u64,
pub container: Option<String>,
}Fields§
§leader_pid: u32§process_group: u32§leader_start_time_ticks: u64§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 HostProcessHandle
impl Clone for HostProcessHandle
Source§fn clone(&self) -> HostProcessHandle
fn clone(&self) -> HostProcessHandle
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 HostProcessHandle
impl Debug for HostProcessHandle
Source§impl<'de> Deserialize<'de> for HostProcessHandle
impl<'de> Deserialize<'de> for HostProcessHandle
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 HostProcessHandle
Source§impl PartialEq for HostProcessHandle
impl PartialEq for HostProcessHandle
Source§impl Serialize for HostProcessHandle
impl Serialize for HostProcessHandle
impl StructuralPartialEq for HostProcessHandle
Auto Trait Implementations§
impl Freeze for HostProcessHandle
impl RefUnwindSafe for HostProcessHandle
impl Send for HostProcessHandle
impl Sync for HostProcessHandle
impl Unpin for HostProcessHandle
impl UnsafeUnpin for HostProcessHandle
impl UnwindSafe for HostProcessHandle
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