[][src]Struct sunshine::framebuffer::Framebuffer

pub struct Framebuffer {
    pub height: usize,
    pub width: usize,
    pub data: Vec<u8>,
}

Fields

height: usizewidth: usizedata: Vec<u8>

Implementations

impl Framebuffer[src]

pub fn new(height: usize, width: usize) -> Framebuffer[src]

pub fn clear(&mut self, color: RGB)[src]

pub fn get_pixel(&self, x: usize, y: usize) -> Option<RGB>[src]

pub fn set_pixel(&mut self, x: usize, y: usize, color: RGB) -> bool[src]

pub fn draw_rect(
    &mut self,
    x: usize,
    y: usize,
    w: usize,
    h: usize,
    color: RGB
) -> bool
[src]

pub fn write_file(&self, filename: &str) -> Result<()>[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> Pointable for T

type Init = T

The type for initializers.

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.