pub enum FileChangeType {
Created = 1,
Changed = 2,
Deleted = 3,
}
Expand description
The file event type.
Variants§
Created = 1
The file got created.
Changed = 2
The file got changed.
Deleted = 3
The file got deleted.
Trait Implementations§
Source§impl Clone for FileChangeType
impl Clone for FileChangeType
Source§fn clone(&self) -> FileChangeType
fn clone(&self) -> FileChangeType
Returns a copy 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 FileChangeType
impl Debug for FileChangeType
Source§impl<'de> Deserialize<'de> for FileChangeType
impl<'de> Deserialize<'de> for FileChangeType
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FileChangeType
impl PartialEq for FileChangeType
Source§impl Serialize for FileChangeType
impl Serialize for FileChangeType
impl Copy for FileChangeType
impl Eq for FileChangeType
impl StructuralPartialEq for FileChangeType
Auto Trait Implementations§
impl Freeze for FileChangeType
impl RefUnwindSafe for FileChangeType
impl Send for FileChangeType
impl Sync for FileChangeType
impl Unpin for FileChangeType
impl UnwindSafe for FileChangeType
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