[][src]Struct gox::Block

pub struct Block {
    pub colors: Vec<[u8; 4]>,
}

Fields

colors: Vec<[u8; 4]>

Implementations

impl Block[src]

pub fn new(bytes: &mut Vec<u8>) -> Self[src]

pub fn set_pixel(&mut self, x: usize, y: usize, z: usize, value: [u8; 4])[src]

pub fn get_pixel(&self, x: usize, y: usize, z: usize) -> [u8; 4][src]

pub fn get_pixel_f32(&self, x: usize, y: usize, z: usize) -> [f32; 4][src]

pub fn is_empty(&self, x: usize, y: usize, z: usize) -> bool[src]

Trait Implementations

impl Debug for Block[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.