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