pub trait DefaultColors {
// Required method
fn default_colors(&self) -> &Arc<Colors> ⓘ;
}Expand description
Implement this trait to allow global Colors access via cx.default_colors().
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".