pub trait IUiColorMethods: IUiColor {
// Provided methods
fn get_face_color(self, b_on: impl Into<bool>) -> Color { ... }
fn get_symbol_color(self, b_on: impl Into<bool>) -> Color { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_face_color(self, b_on: impl Into<bool>) -> Color
fn get_face_color(self, b_on: impl Into<bool>) -> Color
GetFaceColor(bool) overload
Sourcefn get_symbol_color(self, b_on: impl Into<bool>) -> Color
fn get_symbol_color(self, b_on: impl Into<bool>) -> Color
GetSymbolColor(bool) overload
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.
Implementors§
impl<__T: IUiColor> IUiColorMethods for __T
Available on crate feature
app-uicolor only.