pub enum PicOrderCountLsb {
Frame(u32),
FieldsAbsolute {
pic_order_cnt_lsb: u32,
delta_pic_order_cnt_bottom: i32,
},
FieldsDelta([i32; 2]),
}Variants§
Trait Implementations§
Source§impl Debug for PicOrderCountLsb
impl Debug for PicOrderCountLsb
Source§impl PartialEq for PicOrderCountLsb
impl PartialEq for PicOrderCountLsb
Source§fn eq(&self, other: &PicOrderCountLsb) -> bool
fn eq(&self, other: &PicOrderCountLsb) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PicOrderCountLsb
Auto Trait Implementations§
impl Freeze for PicOrderCountLsb
impl RefUnwindSafe for PicOrderCountLsb
impl Send for PicOrderCountLsb
impl Sync for PicOrderCountLsb
impl Unpin for PicOrderCountLsb
impl UnsafeUnpin for PicOrderCountLsb
impl UnwindSafe for PicOrderCountLsb
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