pub enum FileSystemAction {
TreeLoaded,
RecompileNeeded,
LiveReloadNeeded(LiveFileChange),
FileChangedOnDisk(SaveFileResponse),
SnapshotImageLoaded,
SearchResults,
None,
}Variants§
TreeLoaded
RecompileNeeded
LiveReloadNeeded(LiveFileChange)
FileChangedOnDisk(SaveFileResponse)
SnapshotImageLoaded
SearchResults
None
Trait Implementations§
Source§impl ActionDefaultRef for FileSystemAction
impl ActionDefaultRef for FileSystemAction
fn default_ref() -> &'static Self
Source§impl Clone for FileSystemAction
impl Clone for FileSystemAction
Source§fn clone(&self) -> FileSystemAction
fn clone(&self) -> FileSystemAction
Returns a duplicate of the value. Read more
1.0.0 · 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 FileSystemAction
impl Debug for FileSystemAction
Auto Trait Implementations§
impl Freeze for FileSystemAction
impl RefUnwindSafe for FileSystemAction
impl Send for FileSystemAction
impl Sync for FileSystemAction
impl Unpin for FileSystemAction
impl UnwindSafe for FileSystemAction
Blanket Implementations§
Source§impl<T> ActionTrait for T
impl<T> ActionTrait for T
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