[][src]Struct smash_arc::FileSystemHeader

pub struct FileSystemHeader {
    pub table_filesize: u32,
    pub file_info_path_count: u32,
    pub file_info_index_count: u32,
    pub folder_count: u32,
    pub folder_offset_count_1: u32,
    pub hash_folder_count: u32,
    pub file_info_count: u32,
    pub file_info_sub_index_count: u32,
    pub sub_file_count: u32,
    pub folder_offset_count_2: u32,
    pub sub_file_count_2: u32,
    pub padding: u32,
    pub unk1_10: u32,
    pub unk2_10: u32,
    pub regional_count_1: u8,
    pub regional_count_2: u8,
    pub padding2: u16,
    pub version: u32,
    pub extra_folder: u32,
    pub extra_count: u32,
    pub unk: [u32; 2],
    pub extra_count_2: u32,
    pub extra_sub_count: u32,
}

Header to the filesystem, primarily just various counts

Fields

table_filesize: u32file_info_path_count: u32file_info_index_count: u32folder_count: u32folder_offset_count_1: u32hash_folder_count: u32file_info_count: u32file_info_sub_index_count: u32sub_file_count: u32folder_offset_count_2: u32sub_file_count_2: u32padding: u32unk1_10: u32unk2_10: u32regional_count_1: u8regional_count_2: u8padding2: u16version: u32extra_folder: u32extra_count: u32unk: [u32; 2]extra_count_2: u32extra_sub_count: u32

Trait Implementations

impl BinRead for FileSystemHeader[src]

type Args = ()

The type of arguments needed to be supplied in order to read this type, usually a tuple. Read more

impl Clone for FileSystemHeader[src]

impl Copy for FileSystemHeader[src]

impl Debug for FileSystemHeader[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.