pub struct TableImportResult {
pub table_name: String,
pub items_imported: usize,
pub bytes_imported: usize,
pub lines_skipped: usize,
}Expand description
Per-table import result.
Fields§
§table_name: String§items_imported: usize§bytes_imported: usize§lines_skipped: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for TableImportResult
impl RefUnwindSafe for TableImportResult
impl Send for TableImportResult
impl Sync for TableImportResult
impl Unpin for TableImportResult
impl UnsafeUnpin for TableImportResult
impl UnwindSafe for TableImportResult
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