pub struct ZipSplitConfig {
pub max_entries: usize,
pub max_total_decompressed_size: u64,
pub max_per_entry_size: u64,
pub max_compressed_size: u64,
pub max_path_length: usize,
pub allow_empty_directories: bool,
pub duplicate_names_policy: DuplicatePolicy,
pub channel_capacity: usize,
}Fields§
§max_entries: usize§max_total_decompressed_size: u64§max_per_entry_size: u64§max_compressed_size: u64§max_path_length: usize§allow_empty_directories: bool§duplicate_names_policy: DuplicatePolicy§channel_capacity: usizeTrait Implementations§
Source§impl Clone for ZipSplitConfig
impl Clone for ZipSplitConfig
Source§fn clone(&self) -> ZipSplitConfig
fn clone(&self) -> ZipSplitConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ZipSplitConfig
impl Debug for ZipSplitConfig
Auto Trait Implementations§
impl Freeze for ZipSplitConfig
impl RefUnwindSafe for ZipSplitConfig
impl Send for ZipSplitConfig
impl Sync for ZipSplitConfig
impl Unpin for ZipSplitConfig
impl UnsafeUnpin for ZipSplitConfig
impl UnwindSafe for ZipSplitConfig
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