pub enum WorkspaceChange {
Created {
path: String,
},
Modified {
path: String,
},
Removed {
path: String,
},
}Expand description
A file system change within a watched workspace root.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for WorkspaceChange
impl Clone for WorkspaceChange
Source§fn clone(&self) -> WorkspaceChange
fn clone(&self) -> WorkspaceChange
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 WorkspaceChange
impl Debug for WorkspaceChange
impl Eq for WorkspaceChange
Source§impl PartialEq for WorkspaceChange
impl PartialEq for WorkspaceChange
impl StructuralPartialEq for WorkspaceChange
Auto Trait Implementations§
impl Freeze for WorkspaceChange
impl RefUnwindSafe for WorkspaceChange
impl Send for WorkspaceChange
impl Sync for WorkspaceChange
impl Unpin for WorkspaceChange
impl UnsafeUnpin for WorkspaceChange
impl UnwindSafe for WorkspaceChange
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