pub enum Format<R> {
RGB(DecompressStarted<R>),
Gray(DecompressStarted<R>),
CMYK(DecompressStarted<R>),
}Expand description
See Decompress.image()
Variants§
Auto Trait Implementations§
impl<R> !Send for Format<R>
impl<R> !Sync for Format<R>
impl<R> Freeze for Format<R>
impl<R> RefUnwindSafe for Format<R>where
R: RefUnwindSafe,
impl<R> Unpin for Format<R>
impl<R> UnsafeUnpin for Format<R>
impl<R> UnwindSafe for Format<R>where
R: UnwindSafe,
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