pub struct AnimHeader {
pub magic: [u8; 4],
pub version: u32,
pub id_count: u32,
pub unknown: u32,
pub anim_entry_offset: u32,
}Expand description
ANIM file header
Fields§
§magic: [u8; 4]Magic signature (“MAOF”)
version: u32Anim version
id_count: u32The number of AFID IDs in this file
unknown: u32Unknown
anim_entry_offset: u32Offset to animation entries
Implementations§
Trait Implementations§
Source§impl Clone for AnimHeader
impl Clone for AnimHeader
Source§fn clone(&self) -> AnimHeader
fn clone(&self) -> AnimHeader
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for AnimHeader
impl RefUnwindSafe for AnimHeader
impl Send for AnimHeader
impl Sync for AnimHeader
impl Unpin for AnimHeader
impl UnwindSafe for AnimHeader
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