Struct assembly::pk::reader::PackEntryAccessor

source ·
pub struct PackEntryAccessor<T> { /* private fields */ }
Expand description

A low level random access to the entries

Implementations§

source§

impl<T> PackEntryAccessor<T>

source

pub fn into_inner(self) -> PackFile<T>

Return the contained PackFile

source

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

Get a mutable reference to the underlying file

source

pub fn get_ref(&self) -> &PackFile<T>

Get a reference to the underlying file

source§

impl<T> PackEntryAccessor<T>
where T: Seek + BufRead,

source

pub fn get_entry( &mut self, index: i32 ) -> Result<Option<CRCTreeNode<PKEntryData>>, Error>

Get the specified entry if inside of count

source

pub fn read_all(&mut self) -> Result<BTreeMap<CRC, PKEntryData>, Error>

Get all the entries

source

pub fn visit<V>( &mut self, visitor: &mut V ) -> Result<ControlFlow<<V as CRCTreeVisitor<PKEntryData>>::Break>, Error>

Implements a visitor pattern

This CRCTreeVisitor::visit function is called once for every node in the tree in tree order.

source

pub fn get_root_entry( &mut self ) -> Result<Option<CRCTreeNode<PKEntryData>>, Error>

Get the root entrys if not empty

source

pub fn find_entry( &mut self, crc: CRC ) -> Result<Option<CRCTreeNode<PKEntryData>>, Error>

Find an entry given a CRC

source

pub fn get_count(&self) -> u32

Return the number of entries

Auto Trait Implementations§

§

impl<T> Freeze for PackEntryAccessor<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for PackEntryAccessor<T>
where T: RefUnwindSafe,

§

impl<T> Send for PackEntryAccessor<T>
where T: Send,

§

impl<T> Sync for PackEntryAccessor<T>
where T: Sync,

§

impl<T> Unpin for PackEntryAccessor<T>
where T: Unpin,

§

impl<T> UnwindSafe for PackEntryAccessor<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.