Type Alias image::buffer_::Rgb16Image

source ·
pub(crate) type Rgb16Image = ImageBuffer<Rgb<u16>, Vec<u16>>;
Expand description

Sendable 16-bit Rgb image buffer

Aliased Type§

struct Rgb16Image {
    width: u32,
    height: u32,
    _phantom: PhantomData<Rgb<u16>>,
    data: Vec<u16>,
}

Fields§

§width: u32§height: u32§_phantom: PhantomData<Rgb<u16>>§data: Vec<u16>