pub struct ImageDecodeParams {
pub is_indexed: bool,
}
Expand description
Additional parameters for decoding images.
Fields§
§is_indexed: bool
Whether the color space of the image is an indexed color space.
Trait Implementations§
Source§impl Clone for ImageDecodeParams
impl Clone for ImageDecodeParams
Source§fn clone(&self) -> ImageDecodeParams
fn clone(&self) -> ImageDecodeParams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for ImageDecodeParams
impl Default for ImageDecodeParams
Source§fn default() -> ImageDecodeParams
fn default() -> ImageDecodeParams
Returns the “default value” for a type. Read more
Source§impl PartialEq for ImageDecodeParams
impl PartialEq for ImageDecodeParams
impl StructuralPartialEq for ImageDecodeParams
Auto Trait Implementations§
impl Freeze for ImageDecodeParams
impl RefUnwindSafe for ImageDecodeParams
impl Send for ImageDecodeParams
impl Sync for ImageDecodeParams
impl Unpin for ImageDecodeParams
impl UnwindSafe for ImageDecodeParams
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