pub struct ProcessDrainReport {
pub abandoned: Vec<String>,
}Expand description
Report from a graceful owner drain.
Fields§
§abandoned: Vec<String>Process ids this host’s own started OwnerBound work was terminalized as
Abandoned{OwnerDrain} on, in the order they were drained.
Trait Implementations§
Source§impl Clone for ProcessDrainReport
impl Clone for ProcessDrainReport
Source§fn clone(&self) -> ProcessDrainReport
fn clone(&self) -> ProcessDrainReport
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 ProcessDrainReport
impl Debug for ProcessDrainReport
Source§impl Default for ProcessDrainReport
impl Default for ProcessDrainReport
Source§fn default() -> ProcessDrainReport
fn default() -> ProcessDrainReport
Returns the “default value” for a type. Read more
impl Eq for ProcessDrainReport
Source§impl PartialEq for ProcessDrainReport
impl PartialEq for ProcessDrainReport
Source§fn eq(&self, other: &ProcessDrainReport) -> bool
fn eq(&self, other: &ProcessDrainReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProcessDrainReport
Auto Trait Implementations§
impl Freeze for ProcessDrainReport
impl RefUnwindSafe for ProcessDrainReport
impl Send for ProcessDrainReport
impl Sync for ProcessDrainReport
impl Unpin for ProcessDrainReport
impl UnsafeUnpin for ProcessDrainReport
impl UnwindSafe for ProcessDrainReport
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