pub struct RefPicListModification {
pub ref_pic_list_modification_flag_l0: bool,
pub list_entry_l0: Vec<u32>,
pub ref_pic_list_modification_flag_l1: bool,
pub list_entry_l1: Vec<u32>,
}
Fields§
§ref_pic_list_modification_flag_l0: bool
Whenset, indicates that reference picture list 0 is specified explicitly
by a list of list_entry_l0[ i ]
values. When not set, indicates that
reference picture list 0 is determined implicitly.
list_entry_l0: Vec<u32>
list_entry_l0[ i ]
specifies the index of the reference picture in
RefPicListTemp0 to be placed at the current position of reference
picture list 0.
ref_pic_list_modification_flag_l1: bool
Whenset, indicates that reference picture list 1 is specified explicitly
by a list of list_entry_l1[ i ]
values. When not set, indicates that
reference picture list 1 is determined implicitly.
list_entry_l1: Vec<u32>
list_entry_l1[ i ]
specifies the index of the reference picture in
RefPicListTemp1 to be placed at the current position of reference
picture list 1.
Trait Implementations§
Source§impl Clone for RefPicListModification
impl Clone for RefPicListModification
Source§fn clone(&self) -> RefPicListModification
fn clone(&self) -> RefPicListModification
Returns a copy 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 RefPicListModification
impl Debug for RefPicListModification
Source§impl Default for RefPicListModification
impl Default for RefPicListModification
Source§fn default() -> RefPicListModification
fn default() -> RefPicListModification
Returns the “default value” for a type. Read more
Source§impl PartialEq for RefPicListModification
impl PartialEq for RefPicListModification
impl Eq for RefPicListModification
impl StructuralPartialEq for RefPicListModification
Auto Trait Implementations§
impl Freeze for RefPicListModification
impl RefUnwindSafe for RefPicListModification
impl Send for RefPicListModification
impl Sync for RefPicListModification
impl Unpin for RefPicListModification
impl UnwindSafe for RefPicListModification
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