pub trait CatalogPathPrefix {
// Required method
fn path_prefix() -> &'static str;
}Expand description
Trait for data types that have a catalog path prefix.
Required Methods§
Sourcefn path_prefix() -> &'static str
fn path_prefix() -> &'static str
Returns the path prefix (directory name) for this data type.
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.