pub enum Image {
Rgb8(ImgVec<Rgb<u8>>),
Rgb16(ImgVec<Rgb<u16>>),
Rgba8(ImgVec<Rgba<u8>>),
Rgba16(ImgVec<Rgba<u16>>),
Gray8(ImgVec<Gray<u8>>),
Gray16(ImgVec<Gray<u16>>),
}Variants§
Rgb8(ImgVec<Rgb<u8>>)
Rgb16(ImgVec<Rgb<u16>>)
Rgba8(ImgVec<Rgba<u8>>)
Rgba16(ImgVec<Rgba<u16>>)
Gray8(ImgVec<Gray<u8>>)
Gray16(ImgVec<Gray<u16>>)
Auto Trait Implementations§
impl Freeze for Image
impl RefUnwindSafe for Image
impl Send for Image
impl Sync for Image
impl Unpin for Image
impl UnwindSafe for Image
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more