Struct gstreamer_base::BaseParseFrameFlags [−][src]
pub struct BaseParseFrameFlags { /* fields omitted */ }
Flags to be used in a crate::BaseParseFrame
.
Implementations
impl BaseParseFrameFlags
[src]
impl BaseParseFrameFlags
[src]pub const NEW_FRAME: BaseParseFrameFlags
[src]
pub const NEW_FRAME: BaseParseFrameFlags
[src]set by baseclass if current frame is passed for processing to the subclass for the first time (and not set on subsequent calls with same data).
pub const NO_FRAME: BaseParseFrameFlags
[src]
pub const NO_FRAME: BaseParseFrameFlags
[src]set to indicate this buffer should not be counted as frame, e.g. if this frame is dependent on a previous one. As it is not counted as a frame, bitrate increases but frame to time conversions are maintained.
pub const CLIP: BaseParseFrameFlags
[src]
pub const CLIP: BaseParseFrameFlags
[src]pre_push_frame
can set this to indicate
that regular segment clipping can still be performed (as opposed to
any custom one having been done).
pub const DROP: BaseParseFrameFlags
[src]
pub const DROP: BaseParseFrameFlags
[src]indicates to finish_frame
that the
the frame should be dropped (and might be handled internally by subclass)
pub const QUEUE: BaseParseFrameFlags
[src]
pub const QUEUE: BaseParseFrameFlags
[src]indicates to finish_frame
that the
the frame should be queued for now and processed fully later
when the first non-queued frame is finished
pub const fn empty() -> BaseParseFrameFlags
[src]
pub const fn empty() -> BaseParseFrameFlags
[src]Returns an empty set of flags
pub const fn all() -> BaseParseFrameFlags
[src]
pub const fn all() -> BaseParseFrameFlags
[src]Returns the set containing all flags.
pub fn from_bits(bits: u32) -> Option<BaseParseFrameFlags>
[src]
pub fn from_bits(bits: u32) -> Option<BaseParseFrameFlags>
[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) -> BaseParseFrameFlags
[src]
pub const fn from_bits_truncate(bits: u32) -> BaseParseFrameFlags
[src]Convert from underlying bit representation, dropping any bits that do not correspond to flags.
pub const unsafe fn from_bits_unchecked(bits: u32) -> BaseParseFrameFlags
[src]
pub const unsafe fn from_bits_unchecked(bits: u32) -> BaseParseFrameFlags
[src]Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
pub const fn intersects(&self, other: BaseParseFrameFlags) -> bool
[src]
pub const fn intersects(&self, other: BaseParseFrameFlags) -> bool
[src]Returns true
if there are flags common to both self
and other
.
pub const fn contains(&self, other: BaseParseFrameFlags) -> bool
[src]
pub const fn contains(&self, other: BaseParseFrameFlags) -> bool
[src]Returns true
all of the flags in other
are contained within self
.
pub fn insert(&mut self, other: BaseParseFrameFlags)
[src]
pub fn insert(&mut self, other: BaseParseFrameFlags)
[src]Inserts the specified flags in-place.
pub fn remove(&mut self, other: BaseParseFrameFlags)
[src]
pub fn remove(&mut self, other: BaseParseFrameFlags)
[src]Removes the specified flags in-place.
pub fn toggle(&mut self, other: BaseParseFrameFlags)
[src]
pub fn toggle(&mut self, other: BaseParseFrameFlags)
[src]Toggles the specified flags in-place.
pub fn set(&mut self, other: BaseParseFrameFlags, value: bool)
[src]
pub fn set(&mut self, other: BaseParseFrameFlags, value: bool)
[src]Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl Binary for BaseParseFrameFlags
[src]
impl Binary for BaseParseFrameFlags
[src]impl BitAnd<BaseParseFrameFlags> for BaseParseFrameFlags
[src]
impl BitAnd<BaseParseFrameFlags> for BaseParseFrameFlags
[src]fn bitand(self, other: BaseParseFrameFlags) -> BaseParseFrameFlags
[src]
fn bitand(self, other: BaseParseFrameFlags) -> BaseParseFrameFlags
[src]Returns the intersection between the two sets of flags.
type Output = BaseParseFrameFlags
type Output = BaseParseFrameFlags
The resulting type after applying the &
operator.
impl BitAndAssign<BaseParseFrameFlags> for BaseParseFrameFlags
[src]
impl BitAndAssign<BaseParseFrameFlags> for BaseParseFrameFlags
[src]fn bitand_assign(&mut self, other: BaseParseFrameFlags)
[src]
fn bitand_assign(&mut self, other: BaseParseFrameFlags)
[src]Disables all flags disabled in the set.
impl BitOr<BaseParseFrameFlags> for BaseParseFrameFlags
[src]
impl BitOr<BaseParseFrameFlags> for BaseParseFrameFlags
[src]fn bitor(self, other: BaseParseFrameFlags) -> BaseParseFrameFlags
[src]
fn bitor(self, other: BaseParseFrameFlags) -> BaseParseFrameFlags
[src]Returns the union of the two sets of flags.
type Output = BaseParseFrameFlags
type Output = BaseParseFrameFlags
The resulting type after applying the |
operator.
impl BitOrAssign<BaseParseFrameFlags> for BaseParseFrameFlags
[src]
impl BitOrAssign<BaseParseFrameFlags> for BaseParseFrameFlags
[src]fn bitor_assign(&mut self, other: BaseParseFrameFlags)
[src]
fn bitor_assign(&mut self, other: BaseParseFrameFlags)
[src]Adds the set of flags.
impl BitXor<BaseParseFrameFlags> for BaseParseFrameFlags
[src]
impl BitXor<BaseParseFrameFlags> for BaseParseFrameFlags
[src]fn bitxor(self, other: BaseParseFrameFlags) -> BaseParseFrameFlags
[src]
fn bitxor(self, other: BaseParseFrameFlags) -> BaseParseFrameFlags
[src]Returns the left flags, but with all the right flags toggled.
type Output = BaseParseFrameFlags
type Output = BaseParseFrameFlags
The resulting type after applying the ^
operator.
impl BitXorAssign<BaseParseFrameFlags> for BaseParseFrameFlags
[src]
impl BitXorAssign<BaseParseFrameFlags> for BaseParseFrameFlags
[src]fn bitxor_assign(&mut self, other: BaseParseFrameFlags)
[src]
fn bitxor_assign(&mut self, other: BaseParseFrameFlags)
[src]Toggles the set of flags.
impl Clone for BaseParseFrameFlags
[src]
impl Clone for BaseParseFrameFlags
[src]fn clone(&self) -> BaseParseFrameFlags
[src]
fn clone(&self) -> BaseParseFrameFlags
[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 BaseParseFrameFlags
[src]
impl Debug for BaseParseFrameFlags
[src]impl Extend<BaseParseFrameFlags> for BaseParseFrameFlags
[src]
impl Extend<BaseParseFrameFlags> for BaseParseFrameFlags
[src]fn extend<T: IntoIterator<Item = BaseParseFrameFlags>>(&mut self, iterator: T)
[src]
fn extend<T: IntoIterator<Item = BaseParseFrameFlags>>(&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<BaseParseFrameFlags> for BaseParseFrameFlags
[src]
impl FromIterator<BaseParseFrameFlags> for BaseParseFrameFlags
[src]fn from_iter<T: IntoIterator<Item = BaseParseFrameFlags>>(
iterator: T
) -> BaseParseFrameFlags
[src]
fn from_iter<T: IntoIterator<Item = BaseParseFrameFlags>>(
iterator: T
) -> BaseParseFrameFlags
[src]Creates a value from an iterator. Read more
impl Hash for BaseParseFrameFlags
[src]
impl Hash for BaseParseFrameFlags
[src]impl LowerHex for BaseParseFrameFlags
[src]
impl LowerHex for BaseParseFrameFlags
[src]impl Not for BaseParseFrameFlags
[src]
impl Not for BaseParseFrameFlags
[src]fn not(self) -> BaseParseFrameFlags
[src]
fn not(self) -> BaseParseFrameFlags
[src]Returns the complement of this set of flags.
type Output = BaseParseFrameFlags
type Output = BaseParseFrameFlags
The resulting type after applying the !
operator.
impl Octal for BaseParseFrameFlags
[src]
impl Octal for BaseParseFrameFlags
[src]impl Ord for BaseParseFrameFlags
[src]
impl Ord for BaseParseFrameFlags
[src]impl PartialEq<BaseParseFrameFlags> for BaseParseFrameFlags
[src]
impl PartialEq<BaseParseFrameFlags> for BaseParseFrameFlags
[src]fn eq(&self, other: &BaseParseFrameFlags) -> bool
[src]
fn eq(&self, other: &BaseParseFrameFlags) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &BaseParseFrameFlags) -> bool
[src]
fn ne(&self, other: &BaseParseFrameFlags) -> bool
[src]This method tests for !=
.
impl PartialOrd<BaseParseFrameFlags> for BaseParseFrameFlags
[src]
impl PartialOrd<BaseParseFrameFlags> for BaseParseFrameFlags
[src]fn partial_cmp(&self, other: &BaseParseFrameFlags) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &BaseParseFrameFlags) -> 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<BaseParseFrameFlags> for BaseParseFrameFlags
[src]
impl Sub<BaseParseFrameFlags> for BaseParseFrameFlags
[src]fn sub(self, other: BaseParseFrameFlags) -> BaseParseFrameFlags
[src]
fn sub(self, other: BaseParseFrameFlags) -> BaseParseFrameFlags
[src]Returns the set difference of the two sets of flags.
type Output = BaseParseFrameFlags
type Output = BaseParseFrameFlags
The resulting type after applying the -
operator.
impl SubAssign<BaseParseFrameFlags> for BaseParseFrameFlags
[src]
impl SubAssign<BaseParseFrameFlags> for BaseParseFrameFlags
[src]fn sub_assign(&mut self, other: BaseParseFrameFlags)
[src]
fn sub_assign(&mut self, other: BaseParseFrameFlags)
[src]Disables all flags enabled in the set.
impl UpperHex for BaseParseFrameFlags
[src]
impl UpperHex for BaseParseFrameFlags
[src]impl Copy for BaseParseFrameFlags
[src]
impl Eq for BaseParseFrameFlags
[src]
impl StructuralEq for BaseParseFrameFlags
[src]
impl StructuralPartialEq for BaseParseFrameFlags
[src]
Auto Trait Implementations
impl RefUnwindSafe for BaseParseFrameFlags
impl Send for BaseParseFrameFlags
impl Sync for BaseParseFrameFlags
impl Unpin for BaseParseFrameFlags
impl UnwindSafe for BaseParseFrameFlags
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