pub trait PixelFetch {
    // Required method
    fn get_pixel(bitmap: &Image<'_>, x: i32, y: i32) -> u32;
}

Required Methods§

source

fn get_pixel(bitmap: &Image<'_>, x: i32, y: i32) -> u32

Implementors§