pub struct SupervisedProcess {
pub instance: DnsName,
pub service: DnsName,
pub pid: Pid,
pub start_time: ProcessStartTime,
pub alive: bool,
}Fields§
§instance: DnsName§service: DnsName§pid: Pid§start_time: ProcessStartTime§alive: boolTrait Implementations§
Source§impl Clone for SupervisedProcess
impl Clone for SupervisedProcess
Source§fn clone(&self) -> SupervisedProcess
fn clone(&self) -> SupervisedProcess
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 SupervisedProcess
impl Debug for SupervisedProcess
Source§impl<'de> Deserialize<'de> for SupervisedProcess
impl<'de> Deserialize<'de> for SupervisedProcess
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
Auto Trait Implementations§
impl Freeze for SupervisedProcess
impl RefUnwindSafe for SupervisedProcess
impl Send for SupervisedProcess
impl Sync for SupervisedProcess
impl Unpin for SupervisedProcess
impl UnsafeUnpin for SupervisedProcess
impl UnwindSafe for SupervisedProcess
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