Shape

Trait Shape 

Source
pub trait Shape {
    // Required method
    fn draw(&self, painter: &mut Painter<'_, '_>);
}
Expand description

Interface for all shapes that may be drawn on a Canvas widget.

Required Methods§

Source

fn draw(&self, painter: &mut Painter<'_, '_>)

Implementors§