pub enum PFHVersion {
PFH5,
PFH4,
}
Expand description
This enum represents the Version of a PackFile.
The possible values are:
PFH5
: Used in Warhammer 2 and Arena.PFH4
: Used in Warhammer 1, Attila, Rome 2, and Thrones of Brittania.
Variants§
Trait Implementations§
Source§impl Clone for PFHVersion
impl Clone for PFHVersion
Source§fn clone(&self) -> PFHVersion
fn clone(&self) -> PFHVersion
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 PFHVersion
impl Debug for PFHVersion
Source§impl PartialEq for PFHVersion
impl PartialEq for PFHVersion
impl Copy for PFHVersion
impl Eq for PFHVersion
impl StructuralPartialEq for PFHVersion
Auto Trait Implementations§
impl Freeze for PFHVersion
impl RefUnwindSafe for PFHVersion
impl Send for PFHVersion
impl Sync for PFHVersion
impl Unpin for PFHVersion
impl UnwindSafe for PFHVersion
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