pub trait FsChangeNote:
Debug
+ Any
+ Send
+ Sync {
// Required method
fn as_any(&self) -> &dyn Any;
}Expand description
Represents a FsChange note.
This trait is already implemented for all types it applies.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".