pub struct PakInfo {
pub encryption_index_guid: Vec<u8>,
pub is_encrypted: bool,
pub magic: u32,
pub version: i32,
pub sub_version: i32,
pub index_offset: i64,
pub index_size: i64,
pub index_hash: Vec<u8>,
pub index_frozen: u8,
pub compression_methods: Vec<String>,
}
Fields§
§encryption_index_guid: Vec<u8>
§is_encrypted: bool
§magic: u32
§version: i32
§sub_version: i32
§index_offset: i64
§index_size: i64
§index_hash: Vec<u8>
§index_frozen: u8
§compression_methods: Vec<String>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PakInfo
impl RefUnwindSafe for PakInfo
impl Send for PakInfo
impl Sync for PakInfo
impl Unpin for PakInfo
impl UnwindSafe for PakInfo
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