pub struct Drained {
pub ran: usize,
pub abandoned: Vec<Abandoned>,
}Expand description
What a drain did.
Fields§
§ran: usizeHow many runs started and finished.
abandoned: Vec<Abandoned>Barriers given up because nothing could still satisfy them.
Reported rather than counted, because each one is work somebody asked for that will not happen, and a number does not say which.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Drained
impl RefUnwindSafe for Drained
impl Send for Drained
impl Sync for Drained
impl Unpin for Drained
impl UnsafeUnpin for Drained
impl UnwindSafe for Drained
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