Trait nannou::ui::backend::glium::glium::texture::Texture3dDataSource[][src]

pub trait Texture3dDataSource<'a> {
    type Data: 'a + Send + Copy + Clone;
    fn into_raw(self) -> RawImage3d<'a, Self::Data>;
}

Trait that describes data for a two-dimensional texture.

Associated Types

The type of each pixel.

Required Methods

Returns the raw representation of the data.

Implementations on Foreign Types

impl<'a, P> Texture3dDataSource<'a> for Vec<Vec<Vec<P>>> where
    P: PixelValue + Clone
[src]

Implementors