pub trait CatalogPathPrefix {
// Required method
fn path_prefix() -> &'static str;
}Expand description
Persistence-owned static path prefix used by streaming/session writers.
Required Methods§
Sourcefn path_prefix() -> &'static str
fn path_prefix() -> &'static str
Returns the record family prefix.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".