pub struct ZipItem<'a> {
pub filename: String,
pub comment: String,
pub read: Box<dyn Fn() -> Result<Vec<u8>, CompressError> + Send + Sync + 'a>,
}Expand description
Represents a zip item
Fields§
§filename: StringThe file name
comment: StringThe file comment
read: Box<dyn Fn() -> Result<Vec<u8>, CompressError> + Send + Sync + 'a>If the user wants to read the contents of the file, they can use this function and it will unzip it
Auto Trait Implementations§
impl<'a> Freeze for ZipItem<'a>
impl<'a> !RefUnwindSafe for ZipItem<'a>
impl<'a> Send for ZipItem<'a>
impl<'a> Sync for ZipItem<'a>
impl<'a> Unpin for ZipItem<'a>
impl<'a> !UnwindSafe for ZipItem<'a>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more