#[repr(C)]pub struct romfs_hdr_t {
pub header_size: u64,
pub dir_hash_table_offset: u64,
pub dir_hash_table_size: u64,
pub dir_meta_table_offset: u64,
pub dir_meta_table_size: u64,
pub file_hash_table_offset: u64,
pub file_hash_table_size: u64,
pub file_meta_table_offset: u64,
pub file_meta_table_size: u64,
pub data_offset: u64,
}Fields§
§header_size: u64§dir_hash_table_offset: u64§dir_hash_table_size: u64§dir_meta_table_offset: u64§dir_meta_table_size: u64§file_hash_table_offset: u64§file_hash_table_size: u64§file_meta_table_offset: u64§file_meta_table_size: u64§data_offset: u64Trait Implementations§
Source§impl Clone for romfs_hdr_t
impl Clone for romfs_hdr_t
Source§fn clone(&self) -> romfs_hdr_t
fn clone(&self) -> romfs_hdr_t
Returns a copy 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 romfs_hdr_t
impl Debug for romfs_hdr_t
Source§impl Default for romfs_hdr_t
impl Default for romfs_hdr_t
Source§fn default() -> romfs_hdr_t
fn default() -> romfs_hdr_t
Returns the “default value” for a type. Read more
impl Copy for romfs_hdr_t
Auto Trait Implementations§
impl Freeze for romfs_hdr_t
impl RefUnwindSafe for romfs_hdr_t
impl Send for romfs_hdr_t
impl Sync for romfs_hdr_t
impl Unpin for romfs_hdr_t
impl UnwindSafe for romfs_hdr_t
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