pub struct DemandQueueProfile {
pub attempted: usize,
pub pushed: usize,
pub pushed_open: usize,
pub pushed_closed: usize,
pub skipped_duplicate: usize,
pub skipped_covered_by_closed: usize,
}Fields§
§attempted: usize§pushed: usize§pushed_open: usize§pushed_closed: usize§skipped_duplicate: usize§skipped_covered_by_closed: usizeImplementations§
Trait Implementations§
Source§impl Clone for DemandQueueProfile
impl Clone for DemandQueueProfile
Source§fn clone(&self) -> DemandQueueProfile
fn clone(&self) -> DemandQueueProfile
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 DemandQueueProfile
impl Debug for DemandQueueProfile
Source§impl Default for DemandQueueProfile
impl Default for DemandQueueProfile
Source§fn default() -> DemandQueueProfile
fn default() -> DemandQueueProfile
Returns the “default value” for a type. Read more
Source§impl PartialEq for DemandQueueProfile
impl PartialEq for DemandQueueProfile
Source§fn eq(&self, other: &DemandQueueProfile) -> bool
fn eq(&self, other: &DemandQueueProfile) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DemandQueueProfile
impl Eq for DemandQueueProfile
impl StructuralPartialEq for DemandQueueProfile
Auto Trait Implementations§
impl Freeze for DemandQueueProfile
impl RefUnwindSafe for DemandQueueProfile
impl Send for DemandQueueProfile
impl Sync for DemandQueueProfile
impl Unpin for DemandQueueProfile
impl UnsafeUnpin for DemandQueueProfile
impl UnwindSafe for DemandQueueProfile
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