Type Alias rerun::external::image::RgbImage

pub type RgbImage = ImageBuffer<Rgb<u8>, Vec<u8>>;
Expand description

Sendable Rgb image buffer

Aliased Type§

struct RgbImage {
    width: u32,
    height: u32,
    _phantom: PhantomData<Rgb<u8>>,
    data: Vec<u8>,
}

Fields§

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