Struct gstreamer_video::VideoCodecFrameFlags [−][src]
pub struct VideoCodecFrameFlags { /* fields omitted */ }
Flags for crate::VideoCodecFrame
Implementations
impl VideoCodecFrameFlags
[src]
impl VideoCodecFrameFlags
[src]pub const DECODE_ONLY: VideoCodecFrameFlags
[src]
pub const DECODE_ONLY: VideoCodecFrameFlags
[src]is the frame only meant to be decoded
pub const SYNC_POINT: VideoCodecFrameFlags
[src]
pub const SYNC_POINT: VideoCodecFrameFlags
[src]is the frame a synchronization point (keyframe)
pub const FORCE_KEYFRAME: VideoCodecFrameFlags
[src]
pub const FORCE_KEYFRAME: VideoCodecFrameFlags
[src]should the output frame be made a keyframe
pub const FORCE_KEYFRAME_HEADERS: VideoCodecFrameFlags
[src]
pub const FORCE_KEYFRAME_HEADERS: VideoCodecFrameFlags
[src]should the encoder output stream headers
pub const fn empty() -> VideoCodecFrameFlags
[src]
pub const fn empty() -> VideoCodecFrameFlags
[src]Returns an empty set of flags
pub const fn all() -> VideoCodecFrameFlags
[src]
pub const fn all() -> VideoCodecFrameFlags
[src]Returns the set containing all flags.
pub fn from_bits(bits: u32) -> Option<VideoCodecFrameFlags>
[src]
pub fn from_bits(bits: u32) -> Option<VideoCodecFrameFlags>
[src]Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub const fn from_bits_truncate(bits: u32) -> VideoCodecFrameFlags
[src]
pub const fn from_bits_truncate(bits: u32) -> VideoCodecFrameFlags
[src]Convert from underlying bit representation, dropping any bits that do not correspond to flags.
pub const unsafe fn from_bits_unchecked(bits: u32) -> VideoCodecFrameFlags
[src]
pub const unsafe fn from_bits_unchecked(bits: u32) -> VideoCodecFrameFlags
[src]Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
pub const fn intersects(&self, other: VideoCodecFrameFlags) -> bool
[src]
pub const fn intersects(&self, other: VideoCodecFrameFlags) -> bool
[src]Returns true
if there are flags common to both self
and other
.
pub const fn contains(&self, other: VideoCodecFrameFlags) -> bool
[src]
pub const fn contains(&self, other: VideoCodecFrameFlags) -> bool
[src]Returns true
all of the flags in other
are contained within self
.
pub fn insert(&mut self, other: VideoCodecFrameFlags)
[src]
pub fn insert(&mut self, other: VideoCodecFrameFlags)
[src]Inserts the specified flags in-place.
pub fn remove(&mut self, other: VideoCodecFrameFlags)
[src]
pub fn remove(&mut self, other: VideoCodecFrameFlags)
[src]Removes the specified flags in-place.
pub fn toggle(&mut self, other: VideoCodecFrameFlags)
[src]
pub fn toggle(&mut self, other: VideoCodecFrameFlags)
[src]Toggles the specified flags in-place.
pub fn set(&mut self, other: VideoCodecFrameFlags, value: bool)
[src]
pub fn set(&mut self, other: VideoCodecFrameFlags, value: bool)
[src]Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl Binary for VideoCodecFrameFlags
[src]
impl Binary for VideoCodecFrameFlags
[src]impl BitAnd<VideoCodecFrameFlags> for VideoCodecFrameFlags
[src]
impl BitAnd<VideoCodecFrameFlags> for VideoCodecFrameFlags
[src]fn bitand(self, other: VideoCodecFrameFlags) -> VideoCodecFrameFlags
[src]
fn bitand(self, other: VideoCodecFrameFlags) -> VideoCodecFrameFlags
[src]Returns the intersection between the two sets of flags.
type Output = VideoCodecFrameFlags
type Output = VideoCodecFrameFlags
The resulting type after applying the &
operator.
impl BitAndAssign<VideoCodecFrameFlags> for VideoCodecFrameFlags
[src]
impl BitAndAssign<VideoCodecFrameFlags> for VideoCodecFrameFlags
[src]fn bitand_assign(&mut self, other: VideoCodecFrameFlags)
[src]
fn bitand_assign(&mut self, other: VideoCodecFrameFlags)
[src]Disables all flags disabled in the set.
impl BitOr<VideoCodecFrameFlags> for VideoCodecFrameFlags
[src]
impl BitOr<VideoCodecFrameFlags> for VideoCodecFrameFlags
[src]fn bitor(self, other: VideoCodecFrameFlags) -> VideoCodecFrameFlags
[src]
fn bitor(self, other: VideoCodecFrameFlags) -> VideoCodecFrameFlags
[src]Returns the union of the two sets of flags.
type Output = VideoCodecFrameFlags
type Output = VideoCodecFrameFlags
The resulting type after applying the |
operator.
impl BitOrAssign<VideoCodecFrameFlags> for VideoCodecFrameFlags
[src]
impl BitOrAssign<VideoCodecFrameFlags> for VideoCodecFrameFlags
[src]fn bitor_assign(&mut self, other: VideoCodecFrameFlags)
[src]
fn bitor_assign(&mut self, other: VideoCodecFrameFlags)
[src]Adds the set of flags.
impl BitXor<VideoCodecFrameFlags> for VideoCodecFrameFlags
[src]
impl BitXor<VideoCodecFrameFlags> for VideoCodecFrameFlags
[src]fn bitxor(self, other: VideoCodecFrameFlags) -> VideoCodecFrameFlags
[src]
fn bitxor(self, other: VideoCodecFrameFlags) -> VideoCodecFrameFlags
[src]Returns the left flags, but with all the right flags toggled.
type Output = VideoCodecFrameFlags
type Output = VideoCodecFrameFlags
The resulting type after applying the ^
operator.
impl BitXorAssign<VideoCodecFrameFlags> for VideoCodecFrameFlags
[src]
impl BitXorAssign<VideoCodecFrameFlags> for VideoCodecFrameFlags
[src]fn bitxor_assign(&mut self, other: VideoCodecFrameFlags)
[src]
fn bitxor_assign(&mut self, other: VideoCodecFrameFlags)
[src]Toggles the set of flags.
impl Clone for VideoCodecFrameFlags
[src]
impl Clone for VideoCodecFrameFlags
[src]fn clone(&self) -> VideoCodecFrameFlags
[src]
fn clone(&self) -> VideoCodecFrameFlags
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl Debug for VideoCodecFrameFlags
[src]
impl Debug for VideoCodecFrameFlags
[src]impl Extend<VideoCodecFrameFlags> for VideoCodecFrameFlags
[src]
impl Extend<VideoCodecFrameFlags> for VideoCodecFrameFlags
[src]fn extend<T: IntoIterator<Item = VideoCodecFrameFlags>>(&mut self, iterator: T)
[src]
fn extend<T: IntoIterator<Item = VideoCodecFrameFlags>>(&mut self, iterator: T)
[src]Extends a collection with the contents of an iterator. Read more
fn extend_one(&mut self, item: A)
[src]
fn extend_one(&mut self, item: A)
[src]extend_one
)Extends a collection with exactly one element.
fn extend_reserve(&mut self, additional: usize)
[src]
fn extend_reserve(&mut self, additional: usize)
[src]extend_one
)Reserves capacity in a collection for the given number of additional elements. Read more
impl FromIterator<VideoCodecFrameFlags> for VideoCodecFrameFlags
[src]
impl FromIterator<VideoCodecFrameFlags> for VideoCodecFrameFlags
[src]fn from_iter<T: IntoIterator<Item = VideoCodecFrameFlags>>(
iterator: T
) -> VideoCodecFrameFlags
[src]
fn from_iter<T: IntoIterator<Item = VideoCodecFrameFlags>>(
iterator: T
) -> VideoCodecFrameFlags
[src]Creates a value from an iterator. Read more
impl Hash for VideoCodecFrameFlags
[src]
impl Hash for VideoCodecFrameFlags
[src]impl LowerHex for VideoCodecFrameFlags
[src]
impl LowerHex for VideoCodecFrameFlags
[src]impl Not for VideoCodecFrameFlags
[src]
impl Not for VideoCodecFrameFlags
[src]fn not(self) -> VideoCodecFrameFlags
[src]
fn not(self) -> VideoCodecFrameFlags
[src]Returns the complement of this set of flags.
type Output = VideoCodecFrameFlags
type Output = VideoCodecFrameFlags
The resulting type after applying the !
operator.
impl Octal for VideoCodecFrameFlags
[src]
impl Octal for VideoCodecFrameFlags
[src]impl Ord for VideoCodecFrameFlags
[src]
impl Ord for VideoCodecFrameFlags
[src]impl PartialEq<VideoCodecFrameFlags> for VideoCodecFrameFlags
[src]
impl PartialEq<VideoCodecFrameFlags> for VideoCodecFrameFlags
[src]fn eq(&self, other: &VideoCodecFrameFlags) -> bool
[src]
fn eq(&self, other: &VideoCodecFrameFlags) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &VideoCodecFrameFlags) -> bool
[src]
fn ne(&self, other: &VideoCodecFrameFlags) -> bool
[src]This method tests for !=
.
impl PartialOrd<VideoCodecFrameFlags> for VideoCodecFrameFlags
[src]
impl PartialOrd<VideoCodecFrameFlags> for VideoCodecFrameFlags
[src]fn partial_cmp(&self, other: &VideoCodecFrameFlags) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &VideoCodecFrameFlags) -> Option<Ordering>
[src]This method returns an ordering between self
and other
values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than (for self
and other
) and is used by the <
operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Sub<VideoCodecFrameFlags> for VideoCodecFrameFlags
[src]
impl Sub<VideoCodecFrameFlags> for VideoCodecFrameFlags
[src]fn sub(self, other: VideoCodecFrameFlags) -> VideoCodecFrameFlags
[src]
fn sub(self, other: VideoCodecFrameFlags) -> VideoCodecFrameFlags
[src]Returns the set difference of the two sets of flags.
type Output = VideoCodecFrameFlags
type Output = VideoCodecFrameFlags
The resulting type after applying the -
operator.
impl SubAssign<VideoCodecFrameFlags> for VideoCodecFrameFlags
[src]
impl SubAssign<VideoCodecFrameFlags> for VideoCodecFrameFlags
[src]fn sub_assign(&mut self, other: VideoCodecFrameFlags)
[src]
fn sub_assign(&mut self, other: VideoCodecFrameFlags)
[src]Disables all flags enabled in the set.
impl UpperHex for VideoCodecFrameFlags
[src]
impl UpperHex for VideoCodecFrameFlags
[src]impl Copy for VideoCodecFrameFlags
[src]
impl Eq for VideoCodecFrameFlags
[src]
impl StructuralEq for VideoCodecFrameFlags
[src]
impl StructuralPartialEq for VideoCodecFrameFlags
[src]
Auto Trait Implementations
impl RefUnwindSafe for VideoCodecFrameFlags
impl Send for VideoCodecFrameFlags
impl Sync for VideoCodecFrameFlags
impl Unpin for VideoCodecFrameFlags
impl UnwindSafe for VideoCodecFrameFlags
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more