pub trait DrawableStringwhere
    Self: Sized,{
    // Required method
    fn draw(self);
}

Required Methods§

source

fn draw(self)

Implementations on Foreign Types§

source§

impl DrawableString for &str

source§

fn draw(self)

source§

impl DrawableString for &[u8]

source§

fn draw(self)

source§

impl DrawableString for u32

source§

fn draw(self)

Implementors§

source§

impl<const N: usize> DrawableString for String<N>