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