pub struct ShutdownReport {
pub cancelled_runs: Vec<RunId>,
pub interrupted_runs: Vec<RunId>,
pub released_sessions: usize,
}Fields§
§cancelled_runs: Vec<RunId>§interrupted_runs: Vec<RunId>§released_sessions: usizeTrait Implementations§
Source§impl Clone for ShutdownReport
impl Clone for ShutdownReport
Source§fn clone(&self) -> ShutdownReport
fn clone(&self) -> ShutdownReport
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 ShutdownReport
impl Debug for ShutdownReport
Source§impl Default for ShutdownReport
impl Default for ShutdownReport
Source§fn default() -> ShutdownReport
fn default() -> ShutdownReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ShutdownReport
impl<'de> Deserialize<'de> for ShutdownReport
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
Source§impl PartialEq for ShutdownReport
impl PartialEq for ShutdownReport
Source§impl Serialize for ShutdownReport
impl Serialize for ShutdownReport
impl StructuralPartialEq for ShutdownReport
Auto Trait Implementations§
impl Freeze for ShutdownReport
impl RefUnwindSafe for ShutdownReport
impl Send for ShutdownReport
impl Sync for ShutdownReport
impl Unpin for ShutdownReport
impl UnsafeUnpin for ShutdownReport
impl UnwindSafe for ShutdownReport
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