pub struct ImageDescriptor {
pub x: u16,
pub y: u16,
pub width: u16,
pub height: u16,
pub lzw_min_code_size: u8,
}Expand description
Descriptor for a single image frame within the GIF.
Fields§
§x: u16X offset from the left edge of the logical screen.
y: u16Y offset from the top edge of the logical screen.
width: u16Width of the image.
height: u16Height of the image.
lzw_min_code_size: u8LZW minimum code size.
Auto Trait Implementations§
impl Freeze for ImageDescriptor
impl RefUnwindSafe for ImageDescriptor
impl Send for ImageDescriptor
impl Sync for ImageDescriptor
impl Unpin for ImageDescriptor
impl UnwindSafe for ImageDescriptor
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