pub enum Jobify {
Default,
Disable,
Normal,
Aggressive,
}
Expand description
Controls the amount of internal threading used by the compressor.
Variants§
Default
Use compressor default for level of internal job usage
Disable
Do not use jobs at all
Normal
Try to balance parallelism with increased memory use
Aggressive
Maximize parallelism at the cost of increased memory use
Trait Implementations§
Source§impl From<u32> for Jobify
impl From<u32> for Jobify
Source§fn from(jobify: OodleLZ_Jobify) -> Self
fn from(jobify: OodleLZ_Jobify) -> Self
Converts to this type from the input type.
Source§impl Into<u32> for Jobify
impl Into<u32> for Jobify
Source§fn into(self) -> OodleLZ_Jobify
fn into(self) -> OodleLZ_Jobify
Converts this type into the (usually inferred) input type.
impl Copy for Jobify
impl Eq for Jobify
impl StructuralPartialEq for Jobify
Auto Trait Implementations§
impl Freeze for Jobify
impl RefUnwindSafe for Jobify
impl Send for Jobify
impl Sync for Jobify
impl Unpin for Jobify
impl UnwindSafe for Jobify
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