Struct assembly_pack::pk::reader::PackFile
source · pub struct PackFile<T> { /* private fields */ }
Available on crate feature
pk
only.Expand description
A low level pack file reader
Implementations§
source§impl<T> PackFile<T>
impl<T> PackFile<T>
sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Return the inner reader
sourcepub fn check_magic(&mut self) -> Result<()>
pub fn check_magic(&mut self) -> Result<()>
Check for the magic bytes at the beginning of the file
sourcepub fn get_header(&mut self) -> Result<PKTrailer>
pub fn get_header(&mut self) -> Result<PKTrailer>
Load the header from the end of the file
sourcepub fn get_entry(&mut self, addr: u32) -> Result<PKEntry>
pub fn get_entry(&mut self, addr: u32) -> Result<PKEntry>
Load the header from the end of the file
sourcepub fn get_entry_accessor(self, addr: u32) -> Result<PackEntryAccessor<T>>
pub fn get_entry_accessor(self, addr: u32) -> Result<PackEntryAccessor<T>>
Get an random access wrapper for the entries
sourcepub fn get_file_stream<'b>(
&'b mut self,
entry: PKEntry,
) -> PackStreamReader<'b, T> ⓘ
pub fn get_file_stream<'b>( &'b mut self, entry: PKEntry, ) -> PackStreamReader<'b, T> ⓘ
Get a boxed reader for the file stream
sourcepub fn get_file_data(
&mut self,
entry: PKEntry,
) -> Result<PackDataStream<'_, T>, Error>
pub fn get_file_data( &mut self, entry: PKEntry, ) -> Result<PackDataStream<'_, T>, Error>
Get some object with a read trait representing the data
Auto Trait Implementations§
impl<T> Freeze for PackFile<T>where
T: Freeze,
impl<T> RefUnwindSafe for PackFile<T>where
T: RefUnwindSafe,
impl<T> Send for PackFile<T>where
T: Send,
impl<T> Sync for PackFile<T>where
T: Sync,
impl<T> Unpin for PackFile<T>where
T: Unpin,
impl<T> UnwindSafe for PackFile<T>where
T: UnwindSafe,
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
§impl<I, T> ExtractContext<I, ()> for T
impl<I, T> ExtractContext<I, ()> for T
§fn extract_context(self, _original_input: I)
fn extract_context(self, _original_input: I)
Given the context attached to a nom error, and given the original
input to the nom parser, extract more the useful context information. Read more
§impl<I> RecreateContext<I> for I
impl<I> RecreateContext<I> for I
§fn recreate_context(_original_input: I, tail: I) -> I
fn recreate_context(_original_input: I, tail: I) -> I
Given the original input, as well as the context reported by nom,
recreate a context in the original string where the error occurred. Read more