pub struct ExtractedFiles(/* private fields */);
Implementations§
Source§impl ExtractedFiles
impl ExtractedFiles
Sourcepub fn get_entry(&self, path: &Path) -> Option<&ExtractedFilesEntry>
pub fn get_entry(&self, path: &Path) -> Option<&ExtractedFilesEntry>
path
- must be a relative path without.
,..
,/
,prefix:/
and must not be empty, for these values it is guaranteed to returnNone
. But could be set to “.” for top-level.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ExtractedFiles
impl RefUnwindSafe for ExtractedFiles
impl Send for ExtractedFiles
impl Sync for ExtractedFiles
impl Unpin for ExtractedFiles
impl UnwindSafe for ExtractedFiles
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