pub struct ExportResult {
pub exported: usize,
pub errors: Vec<String>,
}Expand description
Result of a bulk export operation.
Fields§
§exported: usizeNumber of documents successfully exported.
errors: Vec<String>Errors encountered during export.
Trait Implementations§
Source§impl Debug for ExportResult
impl Debug for ExportResult
Source§impl Default for ExportResult
impl Default for ExportResult
Source§fn default() -> ExportResult
fn default() -> ExportResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ExportResult
impl RefUnwindSafe for ExportResult
impl Send for ExportResult
impl Sync for ExportResult
impl Unpin for ExportResult
impl UnsafeUnpin for ExportResult
impl UnwindSafe for ExportResult
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