pub struct FlushReport {
pub accepted: usize,
pub remaining: usize,
}Expand description
Report returned by OfflineBuffer::flush.
Fields§
§accepted: usizeNumber of records that were accepted (or already known to the service as duplicates).
remaining: usizeNumber of records that remain in the buffer after the flush.
Trait 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 · 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 PartialEq for FlushReport
impl PartialEq 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