pub enum ImportEvent {
ContentFileResolved {
path: PathBuf,
modified: SystemTime,
},
ArchiveResolved {
path: PathBuf,
},
DataDirAddedForContent {
path: PathBuf,
},
DataDirAddedForArchive {
path: PathBuf,
},
}Variants§
Trait Implementations§
Source§impl Clone for ImportEvent
impl Clone for ImportEvent
Source§fn clone(&self) -> ImportEvent
fn clone(&self) -> ImportEvent
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 ImportEvent
impl Debug for ImportEvent
Source§impl Display for ImportEvent
impl Display for ImportEvent
Source§impl PartialEq for ImportEvent
impl PartialEq for ImportEvent
Source§fn eq(&self, other: &ImportEvent) -> bool
fn eq(&self, other: &ImportEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ImportEvent
impl StructuralPartialEq for ImportEvent
Auto Trait Implementations§
impl Freeze for ImportEvent
impl RefUnwindSafe for ImportEvent
impl Send for ImportEvent
impl Sync for ImportEvent
impl Unpin for ImportEvent
impl UnsafeUnpin for ImportEvent
impl UnwindSafe for ImportEvent
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