pub struct ExtractedFile {
pub path: String,
pub data: Vec<u8>,
}Expand description
A single entry to be written during extraction.
Fields§
§path: StringPath relative to the output root (e.g. assets/<kuid>/art/thumb.jpg).
data: Vec<u8>Decompressed file contents.
Auto Trait Implementations§
impl Freeze for ExtractedFile
impl RefUnwindSafe for ExtractedFile
impl Send for ExtractedFile
impl Sync for ExtractedFile
impl Unpin for ExtractedFile
impl UnsafeUnpin for ExtractedFile
impl UnwindSafe for ExtractedFile
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