pub struct DrainSummary {
pub total_cost_microdollars: u64,
pub total_tasks_completed: u64,
}Expand description
Summary returned by Pool::drain.
Fields§
§total_cost_microdollars: u64Total cost across all slots in microdollars.
total_tasks_completed: u64Total number of tasks completed.
Trait Implementations§
Source§impl Clone for DrainSummary
impl Clone for DrainSummary
Source§fn clone(&self) -> DrainSummary
fn clone(&self) -> DrainSummary
Returns a duplicate of the value. Read more
1.0.0 · 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 DrainSummary
impl Debug for DrainSummary
Source§impl<'de> Deserialize<'de> for DrainSummary
impl<'de> Deserialize<'de> for DrainSummary
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 DrainSummary
impl RefUnwindSafe for DrainSummary
impl Send for DrainSummary
impl Sync for DrainSummary
impl Unpin for DrainSummary
impl UnsafeUnpin for DrainSummary
impl UnwindSafe for DrainSummary
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