pub struct PakSizing {
pub meta_size: u64,
pub indices_size: u64,
pub vault_size: u64,
pub list_size: u64,
}Expand description
This carries the size information of each part of the Pak file. this is always the first 32 bytes of the file.
Fields§
§meta_size: u64§indices_size: u64§vault_size: u64§list_size: u64Trait Implementations§
Source§impl<'de> Deserialize<'de> for PakSizing
impl<'de> Deserialize<'de> for PakSizing
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PakSizing
impl RefUnwindSafe for PakSizing
impl Send for PakSizing
impl Sync for PakSizing
impl Unpin for PakSizing
impl UnwindSafe for PakSizing
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