pub trait VfsImplExt: VfsImpl {
// Provided methods
fn parent_is_active(&self) -> bool { ... }
fn parent_get_file_for_path(&self, path: &Path) -> File { ... }
fn parent_get_file_for_uri(&self, uri: &str) -> File { ... }
fn parent_get_supported_uri_schemes(&self) -> &'static StrVRef { ... }
fn parent_parse_name(&self, parse_name: &str) -> File { ... }
}
Provided Methods§
fn parent_is_active(&self) -> bool
fn parent_get_file_for_path(&self, path: &Path) -> File
fn parent_get_file_for_uri(&self, uri: &str) -> File
fn parent_get_supported_uri_schemes(&self) -> &'static StrVRef
fn parent_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.