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>
where T: Seek + BufRead,

source

pub fn open(inner: T) -> Self

Open a file from a stream

source

pub fn into_inner(self) -> T

Return the inner reader

source

pub fn get_ref(&self) -> &T

Get a reference to the inner reader

source

pub fn get_mut(&mut self) -> &T

Get a mutable reference to the inner reader

source

pub fn check_magic(&mut self) -> Result<()>

Check for the magic bytes at the beginning of the file

source

pub fn get_header(&mut self) -> Result<PKTrailer>

Load the header from the end of the file

source

pub fn get_entry(&mut self, addr: u32) -> Result<PKEntry>

Load the header from the end of the file

source

pub fn get_entry_accessor(self, addr: u32) -> Result<PackEntryAccessor<T>>

Get an random access wrapper for the entries

source

pub fn get_entry_list(&mut self, addr: u32) -> Result<Vec<PKEntry>>

Get a list of all entries

source

pub fn get_file_stream<'b>( &'b mut self, entry: PKEntry ) -> PackStreamReader<'b, T>

Get a boxed reader for the file stream

source

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> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<I, T> ExtractContext<I, ()> for T

§

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
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<I> RecreateContext<I> for 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
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.