pub struct BinHeader { /* private fields */ }
Expand description
ROFL file’s header information
Implementations
sourceimpl BinHeader
impl BinHeader
sourcepub fn header_len(&self) -> usize
pub fn header_len(&self) -> usize
Get the file’s header length
sourcepub fn file_len(&self) -> usize
pub fn file_len(&self) -> usize
Get the file’s length in bytes as per its binary data
This may not match the actual file’s length if an error occured
sourcepub fn metadata_len(&self) -> usize
pub fn metadata_len(&self) -> usize
Length of the file’s metadata section
This should not be required in normal use
sourcepub fn metadata_offset(&self) -> usize
pub fn metadata_offset(&self) -> usize
Offset of the file’s metadata section
This should not be required in normal use
sourcepub fn payload_header_len(&self) -> usize
pub fn payload_header_len(&self) -> usize
Length of the file’s payload header section
This should not be required in normal use
sourcepub fn payload_header_offset(&self) -> usize
pub fn payload_header_offset(&self) -> usize
Offset of the file’s payload header section
This should not be required in normal use
sourcepub fn payload_offset(&self) -> usize
pub fn payload_offset(&self) -> usize
Offset of the file’s payload section
This should not be required in normal use
sourcepub fn from_raw_source(data: &[u8]) -> BinHeader
pub fn from_raw_source(data: &[u8]) -> BinHeader
Create a new header from a manually-loaded file start section
This will be replaced by a from_raw function in the future
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for BinHeader
impl Send for BinHeader
impl Sync for BinHeader
impl Unpin for BinHeader
impl UnwindSafe for BinHeader
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more