[][src]Struct rpi_led_matrix::LedCanvas

pub struct LedCanvas { /* fields omitted */ }

Implementations

impl LedCanvas[src]

pub fn size(&self) -> (i32, i32)[src]

pub fn set(&mut self, x: i32, y: i32, color: &LedColor)[src]

pub fn clear(&mut self)[src]

pub fn fill(&mut self, color: &LedColor)[src]

pub fn draw_line(
    &mut self,
    x0: i32,
    y0: i32,
    x1: i32,
    y1: i32,
    color: &LedColor
)
[src]

pub fn draw_circle(&mut self, x: i32, y: i32, radius: u32, color: &LedColor)[src]

pub fn draw_text(
    &mut self,
    font: &LedFont,
    text: &str,
    x: i32,
    y: i32,
    color: &LedColor,
    kerning_offset: i32,
    vertical: bool
) -> i32
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.