pub struct ClassicMqState {
pub qe: u32,
pub nmps: u8,
pub nlps: u8,
pub switch: bool,
}Expand description
One JPEG 2000 MQ probability-state transition.
Fields§
§qe: u32Probability estimate.
nmps: u8Next state after an MPS event.
nlps: u8Next state after an LPS event.
switch: boolWhether an LPS event switches the MPS bit.
Trait Implementations§
Source§impl Clone for ClassicMqState
impl Clone for ClassicMqState
Source§fn clone(&self) -> ClassicMqState
fn clone(&self) -> ClassicMqState
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 ClassicMqState
Source§impl Debug for ClassicMqState
impl Debug for ClassicMqState
impl Eq for ClassicMqState
Source§impl PartialEq for ClassicMqState
impl PartialEq for ClassicMqState
impl StructuralPartialEq for ClassicMqState
Auto Trait Implementations§
impl Freeze for ClassicMqState
impl RefUnwindSafe for ClassicMqState
impl Send for ClassicMqState
impl Sync for ClassicMqState
impl Unpin for ClassicMqState
impl UnsafeUnpin for ClassicMqState
impl UnwindSafe for ClassicMqState
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