pub struct SavedObjectsImportReport {
pub success: bool,
pub success_count: u64,
pub success_results: Vec<Value>,
pub errors: Vec<Value>,
}Expand description
The server’s Saved Objects import outcome.
Fields§
§success: bool§success_count: u64§success_results: Vec<Value>§errors: Vec<Value>Trait Implementations§
Source§impl Clone for SavedObjectsImportReport
impl Clone for SavedObjectsImportReport
Source§fn clone(&self) -> SavedObjectsImportReport
fn clone(&self) -> SavedObjectsImportReport
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 SavedObjectsImportReport
impl Debug for SavedObjectsImportReport
Source§impl PartialEq for SavedObjectsImportReport
impl PartialEq for SavedObjectsImportReport
impl StructuralPartialEq for SavedObjectsImportReport
Auto Trait Implementations§
impl Freeze for SavedObjectsImportReport
impl RefUnwindSafe for SavedObjectsImportReport
impl Send for SavedObjectsImportReport
impl Sync for SavedObjectsImportReport
impl Unpin for SavedObjectsImportReport
impl UnsafeUnpin for SavedObjectsImportReport
impl UnwindSafe for SavedObjectsImportReport
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