pub struct VFSEntry {
pub entry_type: VFSEntryType,
pub span_offset: u32,
pub span_count: u32,
pub path_index: u32,
pub file_offset: Option<u64>,
pub file_size: Option<u32>,
}
Expand description
VFS table entry
Fields§
§entry_type: VFSEntryType
Entry type
span_offset: u32
Span offset in CFT table
span_count: u32
Span count
path_index: u32
Path index
file_offset: Option<u64>
File offset (for inline data)
file_size: Option<u32>
File size (for inline data)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VFSEntry
impl RefUnwindSafe for VFSEntry
impl Send for VFSEntry
impl Sync for VFSEntry
impl Unpin for VFSEntry
impl UnwindSafe for VFSEntry
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