pub struct J2kCodeBlockDecodeProfile {
pub sigprop_us: u128,
pub magref_us: u128,
pub cleanup_us: u128,
pub bypass_us: u128,
pub output_convert_us: u128,
}Expand description
Adapter scalar classic J2K pass timings for backend experimentation.
Fields§
§sigprop_us: u128Significance propagation pass elapsed time in microseconds.
magref_us: u128Magnitude refinement pass elapsed time in microseconds.
cleanup_us: u128Cleanup pass elapsed time in microseconds.
bypass_us: u128Raw bypass pass elapsed time in microseconds.
output_convert_us: u128Coefficient output conversion elapsed time in microseconds.
Trait Implementations§
Source§impl Clone for J2kCodeBlockDecodeProfile
impl Clone for J2kCodeBlockDecodeProfile
Source§fn clone(&self) -> J2kCodeBlockDecodeProfile
fn clone(&self) -> J2kCodeBlockDecodeProfile
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 moreimpl Copy for J2kCodeBlockDecodeProfile
Source§impl Debug for J2kCodeBlockDecodeProfile
impl Debug for J2kCodeBlockDecodeProfile
Source§impl Default for J2kCodeBlockDecodeProfile
impl Default for J2kCodeBlockDecodeProfile
Source§fn default() -> J2kCodeBlockDecodeProfile
fn default() -> J2kCodeBlockDecodeProfile
Returns the “default value” for a type. Read more
impl Eq for J2kCodeBlockDecodeProfile
Source§impl PartialEq for J2kCodeBlockDecodeProfile
impl PartialEq for J2kCodeBlockDecodeProfile
Source§fn eq(&self, other: &J2kCodeBlockDecodeProfile) -> bool
fn eq(&self, other: &J2kCodeBlockDecodeProfile) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for J2kCodeBlockDecodeProfile
Auto Trait Implementations§
impl Freeze for J2kCodeBlockDecodeProfile
impl RefUnwindSafe for J2kCodeBlockDecodeProfile
impl Send for J2kCodeBlockDecodeProfile
impl Sync for J2kCodeBlockDecodeProfile
impl Unpin for J2kCodeBlockDecodeProfile
impl UnsafeUnpin for J2kCodeBlockDecodeProfile
impl UnwindSafe for J2kCodeBlockDecodeProfile
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
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>
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