Trait embedded_graphics::drawable::Drawable

source ·
pub trait Drawable { }
Expand description

Marks an object as “drawable”. Must be implemented for all graphics objects

Implementors§

source§

impl<'a, C> Drawable for ImageBmp<'a, C>
where C: PixelColor,

source§

impl<'a, C> Drawable for ImageTga<'a, C>
where C: PixelColor,

source§

impl<'a, C, Conf> Drawable for FontBuilder<'a, C, Conf>
where C: PixelColor + 'a, Conf: FontBuilderConf + 'a,

source§

impl<'a, C, T> Drawable for Image<'a, C, T>
where C: PixelColor, T: ImageType,

source§

impl<C> Drawable for Circle<C>
where C: PixelColor,

source§

impl<C> Drawable for Line<C>
where C: PixelColor,

source§

impl<C> Drawable for Rectangle<C>
where C: PixelColor,

source§

impl<C> Drawable for Triangle<C>
where C: PixelColor,