Type Alias ImgMut

Source
pub type ImgMut<'a> = Img<&'a mut Vec<u8>>;
Expand description

Type alias for a mutable image reference.

Aliased Type§

struct ImgMut<'a> {
    pub fmt: ImgFmt,
    pub data: &'a mut Vec<u8>,
}

Fields§

§fmt: ImgFmt

The image format.

§data: &'a mut Vec<u8>

The image data.