pub trait Drawable {
// Required method
fn bbox(&self, strips: &[Strip]) -> Option<RectU16>;
}Expand description
A drawable object that can report its bounding box.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".