pub enum DctToWaveletStageCounterEvent {
ReversibleDwt53Attempt,
ReversibleDwt53Dispatch,
ReversibleDwt53BatchAttempt,
ReversibleDwt53BatchDispatch,
Dwt53Attempt,
Dwt53Dispatch,
Dwt97Attempt,
Dwt97Dispatch,
Dwt97BatchAttempt,
Dwt97BatchDispatch,
Htj2k97CodeblockBatchAttempt,
Htj2k97CodeblockBatchDispatch,
}Expand description
Counter row recorded by DCT-to-wavelet stage accelerators.
Variants§
ReversibleDwt53Attempt
One reversible integer 5/3 job was offered to the accelerator.
ReversibleDwt53Dispatch
One reversible integer 5/3 job was handled by the accelerator.
ReversibleDwt53BatchAttempt
One reversible integer 5/3 batch was offered to the accelerator.
ReversibleDwt53BatchDispatch
One reversible integer 5/3 batch was handled by the accelerator.
Dwt53Attempt
One 5/3 projection job was offered to the accelerator.
Dwt53Dispatch
One 5/3 projection job was handled by the accelerator.
Dwt97Attempt
One 9/7 transform job was offered to the accelerator.
Dwt97Dispatch
One 9/7 transform job was handled by the accelerator.
Dwt97BatchAttempt
One same-geometry 9/7 transform batch was offered to the accelerator.
Dwt97BatchDispatch
One same-geometry 9/7 transform batch was handled by the accelerator.
Htj2k97CodeblockBatchAttempt
One 9/7 code-block-ready batch was offered to the accelerator.
Htj2k97CodeblockBatchDispatch
One 9/7 code-block-ready batch was handled by the accelerator.
Trait Implementations§
Source§impl Clone for DctToWaveletStageCounterEvent
impl Clone for DctToWaveletStageCounterEvent
Source§fn clone(&self) -> DctToWaveletStageCounterEvent
fn clone(&self) -> DctToWaveletStageCounterEvent
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreimpl Copy for DctToWaveletStageCounterEvent
impl Eq for DctToWaveletStageCounterEvent
impl StructuralPartialEq for DctToWaveletStageCounterEvent
Auto Trait Implementations§
impl Freeze for DctToWaveletStageCounterEvent
impl RefUnwindSafe for DctToWaveletStageCounterEvent
impl Send for DctToWaveletStageCounterEvent
impl Sync for DctToWaveletStageCounterEvent
impl Unpin for DctToWaveletStageCounterEvent
impl UnsafeUnpin for DctToWaveletStageCounterEvent
impl UnwindSafe for DctToWaveletStageCounterEvent
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
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>
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