Enum aom_decode::avif::Image
source · [−]pub enum Image {
RGB8(ImgVec<RGB<u8>>),
RGBA8(ImgVec<RGBA<u8>>),
RGB16(ImgVec<RGB<u16>>),
RGBA16(ImgVec<RGBA<u16>>),
Gray8(ImgVec<u8>),
Gray16(ImgVec<u16>),
}Variants
RGB8(ImgVec<RGB<u8>>)
RGBA8(ImgVec<RGBA<u8>>)
RGB16(ImgVec<RGB<u16>>)
RGBA16(ImgVec<RGBA<u16>>)
Gray8(ImgVec<u8>)
Gray16(ImgVec<u16>)
Auto Trait Implementations
impl RefUnwindSafe for Image
impl Send for Image
impl Sync for Image
impl Unpin for Image
impl UnwindSafe for Image
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more