#[repr(C, align(4))]pub struct StdVideoEncodeH264SliceHeaderFlags {
pub _bitfield_align_1: [u8; 0],
pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1]>,
pub __bindgen_padding_0: [u8; 3],
}Fields§
§_bitfield_align_1: [u8; 0]§_bitfield_1: __BindgenBitfieldUnit<[u8; 1]>§__bindgen_padding_0: [u8; 3]Implementations§
Source§impl StdVideoEncodeH264SliceHeaderFlags
impl StdVideoEncodeH264SliceHeaderFlags
pub fn idr_flag(&self) -> u32
pub fn set_idr_flag(&mut self, val: u32)
pub fn is_reference_flag(&self) -> u32
pub fn set_is_reference_flag(&mut self, val: u32)
pub fn num_ref_idx_active_override_flag(&self) -> u32
pub fn set_num_ref_idx_active_override_flag(&mut self, val: u32)
pub fn no_output_of_prior_pics_flag(&self) -> u32
pub fn set_no_output_of_prior_pics_flag(&mut self, val: u32)
pub fn long_term_reference_flag(&self) -> u32
pub fn set_long_term_reference_flag(&mut self, val: u32)
pub fn adaptive_ref_pic_marking_mode_flag(&self) -> u32
pub fn set_adaptive_ref_pic_marking_mode_flag(&mut self, val: u32)
pub fn no_prior_references_available_flag(&self) -> u32
pub fn set_no_prior_references_available_flag(&mut self, val: u32)
pub fn new_bitfield_1( idr_flag: u32, is_reference_flag: u32, num_ref_idx_active_override_flag: u32, no_output_of_prior_pics_flag: u32, long_term_reference_flag: u32, adaptive_ref_pic_marking_mode_flag: u32, no_prior_references_available_flag: u32, ) -> __BindgenBitfieldUnit<[u8; 1]>
Trait Implementations§
Source§impl Clone for StdVideoEncodeH264SliceHeaderFlags
impl Clone for StdVideoEncodeH264SliceHeaderFlags
Source§fn clone(&self) -> StdVideoEncodeH264SliceHeaderFlags
fn clone(&self) -> StdVideoEncodeH264SliceHeaderFlags
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 StdVideoEncodeH264SliceHeaderFlags
Auto Trait Implementations§
impl Freeze for StdVideoEncodeH264SliceHeaderFlags
impl RefUnwindSafe for StdVideoEncodeH264SliceHeaderFlags
impl Send for StdVideoEncodeH264SliceHeaderFlags
impl Sync for StdVideoEncodeH264SliceHeaderFlags
impl Unpin for StdVideoEncodeH264SliceHeaderFlags
impl UnsafeUnpin for StdVideoEncodeH264SliceHeaderFlags
impl UnwindSafe for StdVideoEncodeH264SliceHeaderFlags
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> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<T> FilterHaving<T, Here> for Twhere
T: ?Sized,
impl<T> FilterHaving<T, Here> for Twhere
T: ?Sized,
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 moreSource§impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
fn into_sample(self) -> T
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.