pub trait Image: Clone {
// Required method
fn size(&self) -> Size;
}
Expand description
A trait for a backend’s bitmap image type.
This is cheaply cloneable.
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.