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