pub struct RawAseprite {
pub header: RawAsepriteHeader,
pub frames: Vec<RawAsepriteFrame>,
}
Expand description
A raw .aseprite file
Fields§
§header: RawAsepriteHeader
The header describes how the rest of the file is to be interpreted
frames: Vec<RawAsepriteFrame>
A vector of frames inside the file
Auto Trait Implementations§
impl Freeze for RawAseprite
impl RefUnwindSafe for RawAseprite
impl Send for RawAseprite
impl Sync for RawAseprite
impl Unpin for RawAseprite
impl UnwindSafe for RawAseprite
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