pub struct AnimFrame {
pub image_center_x: i16,
pub image_center_y: i16,
pub width: u16,
pub height: u16,
pub data: Vec<Row>,
}Expand description
A frame of an animtion
Fields§
§image_center_x: i16§image_center_y: i16§width: u16§height: u16§data: Vec<Row>Implementations§
Trait Implementations§
impl Eq for AnimFrame
impl StructuralPartialEq for AnimFrame
Auto Trait Implementations§
impl Freeze for AnimFrame
impl RefUnwindSafe for AnimFrame
impl Send for AnimFrame
impl Sync for AnimFrame
impl Unpin for AnimFrame
impl UnsafeUnpin for AnimFrame
impl UnwindSafe for AnimFrame
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