pub trait Catalog {
type Class<'a>;
// Required methods
fn default<'a>() -> Self::Class<'a>;
fn style(&self, class: &Self::Class<'_>) -> Style;
}Expand description
The theme catalog of a Split.
Required Associated Types§
Sourcetype Class<'a>
type Class<'a>
The item class of the Catalog.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".