pub trait Catalog: Sized {
type Class: Default;
// Required method
fn style(
&self,
class: &Self::Class,
is_determinate: bool,
is_circular: bool,
) -> Style;
}Expand description
A set of rules that dictate the style of an indicator.
Required Associated Types§
Required Methods§
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.