pub enum IfpVersion {
ANP3,
ANPK,
UNSUPPORTED,
}
Expand description
Represents the version of the IFP file.
Variants§
ANP3
GTA3 / Vice City format.
ANPK
San Andreas format.
UNSUPPORTED
An unsupported or unknown format.
Trait Implementations§
Source§impl Clone for IfpVersion
impl Clone for IfpVersion
Source§fn clone(&self) -> IfpVersion
fn clone(&self) -> IfpVersion
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for IfpVersion
impl Debug for IfpVersion
Source§impl PartialEq for IfpVersion
impl PartialEq for IfpVersion
Source§impl Serialize for IfpVersion
impl Serialize for IfpVersion
impl Copy for IfpVersion
impl Eq for IfpVersion
impl StructuralPartialEq for IfpVersion
Auto Trait Implementations§
impl Freeze for IfpVersion
impl RefUnwindSafe for IfpVersion
impl Send for IfpVersion
impl Sync for IfpVersion
impl Unpin for IfpVersion
impl UnwindSafe for IfpVersion
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