pub trait VfsImpl: ObjectImpl + ObjectSubclass<Type: IsA<Vfs>> {
// Provided methods
fn is_active(&self) -> bool { ... }
fn get_file_for_path(&self, path: &Path) -> File { ... }
fn get_file_for_uri(&self, uri: &str) -> File { ... }
fn get_supported_uri_schemes(&self) -> &'static StrVRef { ... }
fn parse_name(&self, parse_name: &str) -> File { ... }
}
Provided Methods§
fn get_file_for_path(&self, path: &Path) -> File
fn get_file_for_uri(&self, uri: &str) -> File
fn get_supported_uri_schemes(&self) -> &'static StrVRef
Sourcefn parse_name(&self, parse_name: &str) -> File
fn parse_name(&self, parse_name: &str) -> File
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.