pub struct SupervisorStats {
pub claimed: usize,
pub failed: usize,
}Expand description
Result of one pass.
Fields§
§claimed: usizeItems claimed.
failed: usizeItems whose evaluation failed.
Trait Implementations§
Source§impl Clone for SupervisorStats
impl Clone for SupervisorStats
Source§fn clone(&self) -> SupervisorStats
fn clone(&self) -> SupervisorStats
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 moreimpl Copy for SupervisorStats
Source§impl Debug for SupervisorStats
impl Debug for SupervisorStats
Source§impl Default for SupervisorStats
impl Default for SupervisorStats
Source§fn default() -> SupervisorStats
fn default() -> SupervisorStats
Returns the “default value” for a type. Read more
impl Eq for SupervisorStats
Source§impl PartialEq for SupervisorStats
impl PartialEq for SupervisorStats
impl StructuralPartialEq for SupervisorStats
Auto Trait Implementations§
impl Freeze for SupervisorStats
impl RefUnwindSafe for SupervisorStats
impl Send for SupervisorStats
impl Sync for SupervisorStats
impl Unpin for SupervisorStats
impl UnsafeUnpin for SupervisorStats
impl UnwindSafe for SupervisorStats
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