pub enum MPQHashType {
TableOffset,
HashA,
HashB,
Table,
}
Expand description
Different HashTypes used in MPQ Archives, they are used to identify embedded filenames.
Variants§
TableOffset
A hashing of type TableOffset
HashA
A Hashing of type A
HashB
A Hashing of type B
Table
A Hashing of type Table
Trait Implementations§
Source§impl Clone for MPQHashType
impl Clone for MPQHashType
Source§fn clone(&self) -> MPQHashType
fn clone(&self) -> MPQHashType
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 MPQHashType
impl Debug for MPQHashType
Source§impl PartialEq for MPQHashType
impl PartialEq for MPQHashType
Source§impl TryFrom<MPQHashType> for u32
impl TryFrom<MPQHashType> for u32
Source§type Error = MPQParserError
type Error = MPQParserError
The type returned in the event of a conversion error.
Source§impl TryFrom<u32> for MPQHashType
impl TryFrom<u32> for MPQHashType
impl Copy for MPQHashType
impl StructuralPartialEq for MPQHashType
Auto Trait Implementations§
impl Freeze for MPQHashType
impl RefUnwindSafe for MPQHashType
impl Send for MPQHashType
impl Sync for MPQHashType
impl Unpin for MPQHashType
impl UnwindSafe for MPQHashType
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