pub struct RwIfp {
pub version: IfpVersion,
pub name: String,
pub animations: Vec<RwIfpAnimation>,
}
Expand description
Represents the top-level structure of a parsed IFP file.
This struct contains the package name and a list of all animations included in the file.
Fields§
§version: IfpVersion
The format version of the IFP file (ANP3
or ANPK
).
name: String
The name of the animation package.
animations: Vec<RwIfpAnimation>
A list of animations contained within the package.
Trait Implementations§
impl StructuralPartialEq for RwIfp
Auto Trait Implementations§
impl Freeze for RwIfp
impl RefUnwindSafe for RwIfp
impl Send for RwIfp
impl Sync for RwIfp
impl Unpin for RwIfp
impl UnwindSafe for RwIfp
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