#[repr(C)]pub enum JxlProgressiveDetail {
Frames = 0,
DC = 1,
LastPasses = 2,
Passes = 3,
DCProgressive = 4,
DCGroups = 5,
Groups = 6,
}Expand description
Types of progressive detail. Setting a progressive detail with value N implies all progressive details with smaller or equal value. Currently only the following level of progressive detail is implemented:
JxlProgressiveDetail::DC(which impliesJxlProgressiveDetail::Frames)JxlProgressiveDetail::LastPasses(which impliesJxlProgressiveDetail::DCandJxlProgressiveDetail::Frames)JxlProgressiveDetail::Passes(which impliesJxlProgressiveDetail::LastPasses,JxlProgressiveDetail::DCandJxlProgressiveDetail::Frames)
Variants§
Frames = 0
After completed kRegularFrames
DC = 1
After completed DC (1:8)
LastPasses = 2
After completed AC passes that are the last pass for their resolution target.
Passes = 3
After completed AC passes that are not the last pass for their resolution target.
DCProgressive = 4
During DC frame when lower resolutions are completed (1:32, 1:16)
DCGroups = 5
After completed groups
Groups = 6
After completed groups
Trait Implementations§
Source§impl Clone for JxlProgressiveDetail
impl Clone for JxlProgressiveDetail
Source§fn clone(&self) -> JxlProgressiveDetail
fn clone(&self) -> JxlProgressiveDetail
Returns a duplicate of the value. Read more
1.0.0 · 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 JxlProgressiveDetail
impl Debug for JxlProgressiveDetail
Source§impl Hash for JxlProgressiveDetail
impl Hash for JxlProgressiveDetail
Source§impl PartialEq for JxlProgressiveDetail
impl PartialEq for JxlProgressiveDetail
impl Copy for JxlProgressiveDetail
impl Eq for JxlProgressiveDetail
impl StructuralPartialEq for JxlProgressiveDetail
Auto Trait Implementations§
impl Freeze for JxlProgressiveDetail
impl RefUnwindSafe for JxlProgressiveDetail
impl Send for JxlProgressiveDetail
impl Sync for JxlProgressiveDetail
impl Unpin for JxlProgressiveDetail
impl UnwindSafe for JxlProgressiveDetail
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