Trait OverlayItem

Source
pub trait OverlayItem {
    // Required method
    fn draw(&self, position: Point, output: &mut Overlay) -> (Point, Point);
}

Required Methods§

Source

fn draw(&self, position: Point, output: &mut Overlay) -> (Point, Point)

Implementations on Foreign Types§

Source§

impl<'a> OverlayItem for &'a str

Source§

fn draw(&self, position: Point, output: &mut Overlay) -> (Point, Point)

Implementors§

Source§

impl<'a> OverlayItem for Graph<'a>

Source§

impl<'a> OverlayItem for Graphs<'a>

Source§

impl<'a> OverlayItem for Table<'a>