Struct assembly_pack::pk::reader::PackEntryAccessor
source · pub struct PackEntryAccessor<T> { /* private fields */ }
Available on crate feature
pk
only.Expand description
A low level random access to the entries
Implementations§
source§impl<T> PackEntryAccessor<T>
impl<T> PackEntryAccessor<T>
source§impl<T> PackEntryAccessor<T>
impl<T> PackEntryAccessor<T>
sourcepub fn get_entry(&mut self, index: i32) -> Result<Option<PKEntry>>
pub fn get_entry(&mut self, index: i32) -> Result<Option<PKEntry>>
Get the specified entry if inside of count
sourcepub fn read_all(&mut self) -> Result<CRCTree<PKEntryData>>
pub fn read_all(&mut self) -> Result<CRCTree<PKEntryData>>
Get all the entries
sourcepub fn visit<V>(&mut self, visitor: &mut V) -> Result<ControlFlow<V::Break>>where
V: CRCTreeVisitor<PKEntryData>,
pub fn visit<V>(&mut self, visitor: &mut V) -> Result<ControlFlow<V::Break>>where
V: CRCTreeVisitor<PKEntryData>,
Implements a visitor pattern
This CRCTreeVisitor::visit function is called once for every node in the tree in tree order.
sourcepub fn get_root_entry(&mut self) -> Result<Option<PKEntry>>
pub fn get_root_entry(&mut self) -> Result<Option<PKEntry>>
Get the root entrys if not empty
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> 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