pub trait ImageExt {
// Required methods
fn image_tint(self, c: Color) -> View;
fn image_fit(self, fit: ImageFit) -> View;
}Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".