pub(crate) struct WebPExtendedInfo {
pub(crate) alpha: bool,
pub(crate) canvas_width: u32,
pub(crate) canvas_height: u32,
pub(crate) icc_profile: bool,
pub(crate) exif_metadata: bool,
pub(crate) xmp_metadata: bool,
pub(crate) animation: bool,
pub(crate) background_color: Option<[u8; 4]>,
pub(crate) background_color_hint: [u8; 4],
}
Fields§
§alpha: bool
§canvas_width: u32
§canvas_height: u32
§icc_profile: bool
§exif_metadata: bool
§xmp_metadata: bool
§animation: bool
§background_color: Option<[u8; 4]>
§background_color_hint: [u8; 4]
Trait Implementations§
Source§impl Clone for WebPExtendedInfo
impl Clone for WebPExtendedInfo
Source§fn clone(&self) -> WebPExtendedInfo
fn clone(&self) -> WebPExtendedInfo
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 moreAuto Trait Implementations§
impl Freeze for WebPExtendedInfo
impl RefUnwindSafe for WebPExtendedInfo
impl Send for WebPExtendedInfo
impl Sync for WebPExtendedInfo
impl Unpin for WebPExtendedInfo
impl UnwindSafe for WebPExtendedInfo
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