pub struct SpawnedDaemon {
pub pid: u32,
pub created_at: f64,
pub command: String,
pub cwd: Option<String>,
pub originator: Option<String>,
pub containment: String,
}Expand description
Information about a daemonized process spawned by the service.
Fields§
§pid: u32§created_at: f64§command: String§cwd: Option<String>§originator: Option<String>§containment: StringTrait Implementations§
Source§impl Clone for SpawnedDaemon
impl Clone for SpawnedDaemon
Source§fn clone(&self) -> SpawnedDaemon
fn clone(&self) -> SpawnedDaemon
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 SpawnedDaemon
impl Debug for SpawnedDaemon
Source§impl PartialEq for SpawnedDaemon
impl PartialEq for SpawnedDaemon
Source§fn eq(&self, other: &SpawnedDaemon) -> bool
fn eq(&self, other: &SpawnedDaemon) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SpawnedDaemon
Auto Trait Implementations§
impl Freeze for SpawnedDaemon
impl RefUnwindSafe for SpawnedDaemon
impl Send for SpawnedDaemon
impl Sync for SpawnedDaemon
impl Unpin for SpawnedDaemon
impl UnsafeUnpin for SpawnedDaemon
impl UnwindSafe for SpawnedDaemon
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