pub trait Catalog: Catalog {
type Class<'a>;
// Required methods
fn default<'a>() -> <Self as Catalog>::Class<'a>;
fn style(&self, class: &<Self as Catalog>::Class<'_>) -> Style;
}
Expand description
The theme catalog of a PaneGrid
.
Required Associated Types§
Required Methods§
Object Safety§
This trait is not object safe.