pub struct ImageInfo {
pub width: u16,
pub height: u16,
pub pixel_format: PixelFormat,
pub coding_process: CodingProcess,
}Expand description
Represents metadata of an image.
Fields§
§width: u16The width of the image, in pixels.
height: u16The height of the image, in pixels.
pixel_format: PixelFormatThe pixel format of the image.
coding_process: CodingProcessThe coding process of the image.
Trait Implementations§
impl Copy for ImageInfo
impl StructuralPartialEq for ImageInfo
Auto Trait Implementations§
impl Freeze for ImageInfo
impl RefUnwindSafe for ImageInfo
impl Send for ImageInfo
impl Sync for ImageInfo
impl Unpin for ImageInfo
impl UnwindSafe for ImageInfo
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