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;
// Provided method
fn default_scrollable<'a>() -> <Self as Catalog>::Class<'a> { ... }
}Expand description
The theme catalog of a Menu.
Required Associated Types§
Required Methods§
Provided Methods§
Sourcefn default_scrollable<'a>() -> <Self as Catalog>::Class<'a>
fn default_scrollable<'a>() -> <Self as Catalog>::Class<'a>
The default class for the scrollable of the Menu.
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.