Struct gstreamer::ElementFactoryListType [−][src]
pub struct ElementFactoryListType { /* fields omitted */ }
Implementations
impl ElementFactoryListType
[src]
impl ElementFactoryListType
[src]pub const DECODER: ElementFactoryListType
[src]
pub const ENCODER: ElementFactoryListType
[src]
pub const SINK: ElementFactoryListType
[src]
pub const SRC: ElementFactoryListType
[src]
pub const MUXER: ElementFactoryListType
[src]
pub const DEMUXER: ElementFactoryListType
[src]
pub const PARSER: ElementFactoryListType
[src]
pub const PAYLOADER: ElementFactoryListType
[src]
pub const DEPAYLOADER: ElementFactoryListType
[src]
pub const FORMATTER: ElementFactoryListType
[src]
pub const DECRYPTOR: ElementFactoryListType
[src]
pub const ENCRYPTOR: ElementFactoryListType
[src]
pub const HARDWARE: ElementFactoryListType
[src]
pub const MEDIA_VIDEO: ElementFactoryListType
[src]
pub const MEDIA_AUDIO: ElementFactoryListType
[src]
pub const MEDIA_IMAGE: ElementFactoryListType
[src]
pub const MEDIA_SUBTITLE: ElementFactoryListType
[src]
pub const MEDIA_METADATA: ElementFactoryListType
[src]
pub const ANY: ElementFactoryListType
[src]
pub const MEDIA_ANY: ElementFactoryListType
[src]
pub const VIDEO_ENCODER: ElementFactoryListType
[src]
pub const AUDIO_ENCODER: ElementFactoryListType
[src]
pub const AUDIOVIDEO_SINKS: ElementFactoryListType
[src]
pub const DECODABLE: ElementFactoryListType
[src]
pub const fn empty() -> ElementFactoryListType
[src]
pub const fn empty() -> ElementFactoryListType
[src]Returns an empty set of flags
pub const fn all() -> ElementFactoryListType
[src]
pub const fn all() -> ElementFactoryListType
[src]Returns the set containing all flags.
pub fn from_bits(bits: u64) -> Option<ElementFactoryListType>
[src]
pub fn from_bits(bits: u64) -> Option<ElementFactoryListType>
[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: u64) -> ElementFactoryListType
[src]
pub const fn from_bits_truncate(bits: u64) -> ElementFactoryListType
[src]Convert from underlying bit representation, dropping any bits that do not correspond to flags.
pub const unsafe fn from_bits_unchecked(bits: u64) -> ElementFactoryListType
[src]
pub const unsafe fn from_bits_unchecked(bits: u64) -> ElementFactoryListType
[src]Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
pub const fn intersects(&self, other: ElementFactoryListType) -> bool
[src]
pub const fn intersects(&self, other: ElementFactoryListType) -> bool
[src]Returns true
if there are flags common to both self
and other
.
pub const fn contains(&self, other: ElementFactoryListType) -> bool
[src]
pub const fn contains(&self, other: ElementFactoryListType) -> bool
[src]Returns true
all of the flags in other
are contained within self
.
pub fn insert(&mut self, other: ElementFactoryListType)
[src]
pub fn insert(&mut self, other: ElementFactoryListType)
[src]Inserts the specified flags in-place.
pub fn remove(&mut self, other: ElementFactoryListType)
[src]
pub fn remove(&mut self, other: ElementFactoryListType)
[src]Removes the specified flags in-place.
pub fn toggle(&mut self, other: ElementFactoryListType)
[src]
pub fn toggle(&mut self, other: ElementFactoryListType)
[src]Toggles the specified flags in-place.
pub fn set(&mut self, other: ElementFactoryListType, value: bool)
[src]
pub fn set(&mut self, other: ElementFactoryListType, value: bool)
[src]Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl Binary for ElementFactoryListType
[src]
impl Binary for ElementFactoryListType
[src]impl BitAnd<ElementFactoryListType> for ElementFactoryListType
[src]
impl BitAnd<ElementFactoryListType> for ElementFactoryListType
[src]fn bitand(self, other: ElementFactoryListType) -> ElementFactoryListType
[src]
fn bitand(self, other: ElementFactoryListType) -> ElementFactoryListType
[src]Returns the intersection between the two sets of flags.
type Output = ElementFactoryListType
type Output = ElementFactoryListType
The resulting type after applying the &
operator.
impl BitAndAssign<ElementFactoryListType> for ElementFactoryListType
[src]
impl BitAndAssign<ElementFactoryListType> for ElementFactoryListType
[src]fn bitand_assign(&mut self, other: ElementFactoryListType)
[src]
fn bitand_assign(&mut self, other: ElementFactoryListType)
[src]Disables all flags disabled in the set.
impl BitOr<ElementFactoryListType> for ElementFactoryListType
[src]
impl BitOr<ElementFactoryListType> for ElementFactoryListType
[src]fn bitor(self, other: ElementFactoryListType) -> ElementFactoryListType
[src]
fn bitor(self, other: ElementFactoryListType) -> ElementFactoryListType
[src]Returns the union of the two sets of flags.
type Output = ElementFactoryListType
type Output = ElementFactoryListType
The resulting type after applying the |
operator.
impl BitOrAssign<ElementFactoryListType> for ElementFactoryListType
[src]
impl BitOrAssign<ElementFactoryListType> for ElementFactoryListType
[src]fn bitor_assign(&mut self, other: ElementFactoryListType)
[src]
fn bitor_assign(&mut self, other: ElementFactoryListType)
[src]Adds the set of flags.
impl BitXor<ElementFactoryListType> for ElementFactoryListType
[src]
impl BitXor<ElementFactoryListType> for ElementFactoryListType
[src]fn bitxor(self, other: ElementFactoryListType) -> ElementFactoryListType
[src]
fn bitxor(self, other: ElementFactoryListType) -> ElementFactoryListType
[src]Returns the left flags, but with all the right flags toggled.
type Output = ElementFactoryListType
type Output = ElementFactoryListType
The resulting type after applying the ^
operator.
impl BitXorAssign<ElementFactoryListType> for ElementFactoryListType
[src]
impl BitXorAssign<ElementFactoryListType> for ElementFactoryListType
[src]fn bitxor_assign(&mut self, other: ElementFactoryListType)
[src]
fn bitxor_assign(&mut self, other: ElementFactoryListType)
[src]Toggles the set of flags.
impl Clone for ElementFactoryListType
[src]
impl Clone for ElementFactoryListType
[src]fn clone(&self) -> ElementFactoryListType
[src]
fn clone(&self) -> ElementFactoryListType
[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 ElementFactoryListType
[src]
impl Debug for ElementFactoryListType
[src]impl Extend<ElementFactoryListType> for ElementFactoryListType
[src]
impl Extend<ElementFactoryListType> for ElementFactoryListType
[src]fn extend<T: IntoIterator<Item = ElementFactoryListType>>(
&mut self,
iterator: T
)
[src]
fn extend<T: IntoIterator<Item = ElementFactoryListType>>(
&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<ElementFactoryListType> for ElementFactoryListType
[src]
impl FromIterator<ElementFactoryListType> for ElementFactoryListType
[src]fn from_iter<T: IntoIterator<Item = ElementFactoryListType>>(
iterator: T
) -> ElementFactoryListType
[src]
fn from_iter<T: IntoIterator<Item = ElementFactoryListType>>(
iterator: T
) -> ElementFactoryListType
[src]Creates a value from an iterator. Read more
impl Hash for ElementFactoryListType
[src]
impl Hash for ElementFactoryListType
[src]impl LowerHex for ElementFactoryListType
[src]
impl LowerHex for ElementFactoryListType
[src]impl Not for ElementFactoryListType
[src]
impl Not for ElementFactoryListType
[src]fn not(self) -> ElementFactoryListType
[src]
fn not(self) -> ElementFactoryListType
[src]Returns the complement of this set of flags.
type Output = ElementFactoryListType
type Output = ElementFactoryListType
The resulting type after applying the !
operator.
impl Octal for ElementFactoryListType
[src]
impl Octal for ElementFactoryListType
[src]impl Ord for ElementFactoryListType
[src]
impl Ord for ElementFactoryListType
[src]impl PartialEq<ElementFactoryListType> for ElementFactoryListType
[src]
impl PartialEq<ElementFactoryListType> for ElementFactoryListType
[src]fn eq(&self, other: &ElementFactoryListType) -> bool
[src]
fn eq(&self, other: &ElementFactoryListType) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &ElementFactoryListType) -> bool
[src]
fn ne(&self, other: &ElementFactoryListType) -> bool
[src]This method tests for !=
.
impl PartialOrd<ElementFactoryListType> for ElementFactoryListType
[src]
impl PartialOrd<ElementFactoryListType> for ElementFactoryListType
[src]fn partial_cmp(&self, other: &ElementFactoryListType) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &ElementFactoryListType) -> 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<ElementFactoryListType> for ElementFactoryListType
[src]
impl Sub<ElementFactoryListType> for ElementFactoryListType
[src]fn sub(self, other: ElementFactoryListType) -> ElementFactoryListType
[src]
fn sub(self, other: ElementFactoryListType) -> ElementFactoryListType
[src]Returns the set difference of the two sets of flags.
type Output = ElementFactoryListType
type Output = ElementFactoryListType
The resulting type after applying the -
operator.
impl SubAssign<ElementFactoryListType> for ElementFactoryListType
[src]
impl SubAssign<ElementFactoryListType> for ElementFactoryListType
[src]fn sub_assign(&mut self, other: ElementFactoryListType)
[src]
fn sub_assign(&mut self, other: ElementFactoryListType)
[src]Disables all flags enabled in the set.
impl UpperHex for ElementFactoryListType
[src]
impl UpperHex for ElementFactoryListType
[src]impl Copy for ElementFactoryListType
[src]
impl Eq for ElementFactoryListType
[src]
impl StructuralEq for ElementFactoryListType
[src]
impl StructuralPartialEq for ElementFactoryListType
[src]
Auto Trait Implementations
impl RefUnwindSafe for ElementFactoryListType
impl Send for ElementFactoryListType
impl Sync for ElementFactoryListType
impl Unpin for ElementFactoryListType
impl UnwindSafe for ElementFactoryListType
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