pub trait MyFileSystemIf {
    // Required method
    fn new_myfs(disk: Disk) -> Arc<dyn VfsOps>;
}Available on crate feature 
myfs only.Expand description
The interface to define custom filesystems in user apps.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.