pub struct ZipIgnoreEntryHandler<H = DefaultEntryHandler> { /* private fields */ }Expand description
An EntryHandler wrapper that honors .zipignore files similar to how .gitignore works.
Patterns from .zipignore files are merged from the root directory down to deeper levels.
If a path is not ignored, delegation continues to the wrapped inner handler.
Implementations§
Source§impl<H> ZipIgnoreEntryHandler<H>
impl<H> ZipIgnoreEntryHandler<H>
pub fn with_inner(inner: H) -> Self
Trait Implementations§
Source§impl<T: FileOptionExtension, H> EntryHandler<T> for ZipIgnoreEntryHandler<H>where
H: EntryHandler<T>,
impl<T: FileOptionExtension, H> EntryHandler<T> for ZipIgnoreEntryHandler<H>where
H: EntryHandler<T>,
Auto Trait Implementations§
impl<H = DefaultEntryHandler> !Freeze for ZipIgnoreEntryHandler<H>
impl<H> RefUnwindSafe for ZipIgnoreEntryHandler<H>where
H: RefUnwindSafe,
impl<H> Send for ZipIgnoreEntryHandler<H>where
H: Send,
impl<H> Sync for ZipIgnoreEntryHandler<H>where
H: Sync,
impl<H> Unpin for ZipIgnoreEntryHandler<H>where
H: Unpin,
impl<H> UnwindSafe for ZipIgnoreEntryHandler<H>where
H: UnwindSafe,
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more