pub struct PackContext<'a, F> {
pub data: &'a File,
pub options: Options<F>,
}
Expand description
Information to allow verifying the integrity of an index with the help of its corresponding pack.
Fields§
§data: &'a File
The pack data file itself.
options: Options<F>
The options further configuring the pack traversal and verification
Auto Trait Implementations§
impl<'a, F> Freeze for PackContext<'a, F>where
F: Freeze,
impl<'a, F> RefUnwindSafe for PackContext<'a, F>where
F: RefUnwindSafe,
impl<'a, F> Send for PackContext<'a, F>where
F: Send,
impl<'a, F> Sync for PackContext<'a, F>where
F: Sync,
impl<'a, F> Unpin for PackContext<'a, F>where
F: Unpin,
impl<'a, F> UnwindSafe for PackContext<'a, F>where
F: 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