pub struct SupervisorObservedProcess {
pub pid: Option<u32>,
pub spawned_at_ms: Option<u64>,
pub spawned_from: Option<PathBuf>,
pub running_image: RunningImageAgreement,
}Expand description
Process facts observed by the daemon for a supervised module.
Build claims remain under module_declared; mixing them here would imply the
daemon independently observed module-provided metadata.
Fields§
§pid: Option<u32>§spawned_at_ms: Option<u64>§spawned_from: Option<PathBuf>§running_image: RunningImageAgreementTrait Implementations§
Source§impl Clone for SupervisorObservedProcess
impl Clone for SupervisorObservedProcess
Source§fn clone(&self) -> SupervisorObservedProcess
fn clone(&self) -> SupervisorObservedProcess
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 SupervisorObservedProcess
impl Debug for SupervisorObservedProcess
Source§impl<'de> Deserialize<'de> for SupervisorObservedProcess
impl<'de> Deserialize<'de> for SupervisorObservedProcess
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 StructuralPartialEq for SupervisorObservedProcess
Auto Trait Implementations§
impl Freeze for SupervisorObservedProcess
impl RefUnwindSafe for SupervisorObservedProcess
impl Send for SupervisorObservedProcess
impl Sync for SupervisorObservedProcess
impl Unpin for SupervisorObservedProcess
impl UnsafeUnpin for SupervisorObservedProcess
impl UnwindSafe for SupervisorObservedProcess
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