pub enum Cel {
RawCel {
width: u16,
height: u16,
pixels: Pixels,
},
LinkedCel {
frame_position: u16,
},
CompressedImage {
width: u16,
height: u16,
zlib_compressed_data: Vec<u8>,
},
}
Variants§
Auto Trait Implementations§
impl Freeze for Cel
impl RefUnwindSafe for Cel
impl Send for Cel
impl Sync for Cel
impl Unpin for Cel
impl UnwindSafe for Cel
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