pub struct DataViewImportReport {
pub applied: bool,
pub succeeded: Vec<Value>,
pub skipped: Vec<Value>,
pub failed: Vec<Value>,
pub total: usize,
}Expand description
The per-object result of applying a guarded data-view import.
Fields§
§applied: bool§succeeded: Vec<Value>§skipped: Vec<Value>§failed: Vec<Value>§total: usizeTrait Implementations§
Source§impl Clone for DataViewImportReport
impl Clone for DataViewImportReport
Source§fn clone(&self) -> DataViewImportReport
fn clone(&self) -> DataViewImportReport
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 DataViewImportReport
impl Debug for DataViewImportReport
Source§impl PartialEq for DataViewImportReport
impl PartialEq for DataViewImportReport
Source§impl Serialize for DataViewImportReport
impl Serialize for DataViewImportReport
impl StructuralPartialEq for DataViewImportReport
Auto Trait Implementations§
impl Freeze for DataViewImportReport
impl RefUnwindSafe for DataViewImportReport
impl Send for DataViewImportReport
impl Sync for DataViewImportReport
impl Unpin for DataViewImportReport
impl UnsafeUnpin for DataViewImportReport
impl UnwindSafe for DataViewImportReport
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