pub trait IMascotColorDataMethods: IMascotColorData {
// Provided methods
fn get_r(self) -> i32 { ... }
fn set_r(self, value: impl Into<i32>) { ... }
fn get_g(self) -> i32 { ... }
fn set_g(self, value: impl Into<i32>) { ... }
fn get_b(self) -> i32 { ... }
fn set_b(self, value: impl Into<i32>) { ... }
fn on_build(self) { ... }
fn ctor(self) { ... }
}Provided 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.
Implementors§
impl<__T: IMascotColorData> IMascotColorDataMethods for __T
Available on crate feature
app-mascotcolordata only.