pub struct DataViewImportPlan {
pub preview: MutationPlan,
pub specs: Vec<DataViewSpec>,
pub before: BTreeMap<String, Option<DataViewSpec>>,
pub patches: BTreeMap<String, DataViewPatch>,
pub skipped: Vec<Value>,
pub total: usize,
pub overwrite: bool,
}Expand description
The immutable, guard-ready import work computed from one portable artifact.
Fields§
§preview: MutationPlan§specs: Vec<DataViewSpec>§before: BTreeMap<String, Option<DataViewSpec>>§patches: BTreeMap<String, DataViewPatch>§skipped: Vec<Value>§total: usize§overwrite: boolTrait Implementations§
Source§impl Clone for DataViewImportPlan
impl Clone for DataViewImportPlan
Source§fn clone(&self) -> DataViewImportPlan
fn clone(&self) -> DataViewImportPlan
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 DataViewImportPlan
impl Debug for DataViewImportPlan
Source§impl PartialEq for DataViewImportPlan
impl PartialEq for DataViewImportPlan
impl StructuralPartialEq for DataViewImportPlan
Auto Trait Implementations§
impl Freeze for DataViewImportPlan
impl RefUnwindSafe for DataViewImportPlan
impl Send for DataViewImportPlan
impl Sync for DataViewImportPlan
impl Unpin for DataViewImportPlan
impl UnsafeUnpin for DataViewImportPlan
impl UnwindSafe for DataViewImportPlan
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