pub struct ImportStats {
pub streams_imported: usize,
pub streams_skipped: usize,
pub messages_imported: usize,
}Expand description
Counts returned after a successful import.
Fields§
§streams_imported: usizeNumber of streams created (or replaced) from the input.
streams_skipped: usizeNumber of streams skipped because they already existed.
messages_imported: usizeTotal messages written across all imported streams.
Auto Trait Implementations§
impl Freeze for ImportStats
impl RefUnwindSafe for ImportStats
impl Send for ImportStats
impl Sync for ImportStats
impl Unpin for ImportStats
impl UnsafeUnpin for ImportStats
impl UnwindSafe for ImportStats
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