pub struct ImportReport {
pub warnings: Vec<ImportWarning>,
pub events: Vec<ImportEvent>,
pub changed_keys: BTreeSet<String>,
}Fields§
§warnings: Vec<ImportWarning>§events: Vec<ImportEvent>§changed_keys: BTreeSet<String>Trait Implementations§
Source§impl Clone for ImportReport
impl Clone for ImportReport
Source§fn clone(&self) -> ImportReport
fn clone(&self) -> ImportReport
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 ImportReport
impl Debug for ImportReport
Source§impl PartialEq for ImportReport
impl PartialEq for ImportReport
Source§fn eq(&self, other: &ImportReport) -> bool
fn eq(&self, other: &ImportReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ImportReport
impl StructuralPartialEq for ImportReport
Auto Trait Implementations§
impl Freeze for ImportReport
impl RefUnwindSafe for ImportReport
impl Send for ImportReport
impl Sync for ImportReport
impl Unpin for ImportReport
impl UnsafeUnpin for ImportReport
impl UnwindSafe for ImportReport
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