pub struct RawAsepriteFrame {
pub magic_number: u16,
pub duration_ms: u16,
pub chunks: Vec<RawAsepriteChunk>,
}
Expand description
A raw frame
Fields§
§magic_number: u16
The magic frame number, always 0xF1FA
duration_ms: u16
Duration of this frame, in ms
chunks: Vec<RawAsepriteChunk>
The chunks in this frame
Auto Trait Implementations§
impl Freeze for RawAsepriteFrame
impl RefUnwindSafe for RawAsepriteFrame
impl Send for RawAsepriteFrame
impl Sync for RawAsepriteFrame
impl Unpin for RawAsepriteFrame
impl UnwindSafe for RawAsepriteFrame
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