pub struct CleanupObservation {
pub processes_cleaned: bool,
pub sockets_removed: bool,
pub temp_files_cleaned: bool,
pub leftover_artifacts: Vec<String>,
}Fields§
§processes_cleaned: bool§sockets_removed: bool§temp_files_cleaned: bool§leftover_artifacts: Vec<String>Trait Implementations§
Source§impl Clone for CleanupObservation
impl Clone for CleanupObservation
Source§fn clone(&self) -> CleanupObservation
fn clone(&self) -> CleanupObservation
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 CleanupObservation
impl Debug for CleanupObservation
Source§impl Default for CleanupObservation
impl Default for CleanupObservation
Source§fn default() -> CleanupObservation
fn default() -> CleanupObservation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CleanupObservation
impl<'de> Deserialize<'de> for CleanupObservation
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 CleanupObservation
impl RefUnwindSafe for CleanupObservation
impl Send for CleanupObservation
impl Sync for CleanupObservation
impl Unpin for CleanupObservation
impl UnsafeUnpin for CleanupObservation
impl UnwindSafe for CleanupObservation
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