[][src]Struct gstreamer::CapsFeaturesRef

#[repr(C)]
pub struct CapsFeaturesRef(_);

Methods

impl CapsFeaturesRef[src]

pub unsafe fn from_glib_borrow<'a>(
    ptr: *const GstCapsFeatures
) -> &'a CapsFeaturesRef
[src]

pub unsafe fn from_glib_borrow_mut<'a>(
    ptr: *mut GstCapsFeatures
) -> &'a mut CapsFeaturesRef
[src]

pub unsafe fn as_ptr(&self) -> *const GstCapsFeatures[src]

pub unsafe fn as_mut_ptr(&self) -> *mut GstCapsFeatures[src]

pub fn is_empty(&self) -> bool[src]

pub fn is_any(&self) -> bool[src]

pub fn contains(&self, feature: &str) -> bool[src]

pub fn get_size(&self) -> u32[src]

pub fn get_nth(&self, idx: u32) -> Option<&str>[src]

pub fn add(&mut self, feature: &str)[src]

pub fn remove(&mut self, feature: &str)[src]

pub fn iter(&self) -> Iter[src]

pub fn is_equal(&self, other: &CapsFeaturesRef) -> bool[src]

Trait Implementations

impl AsMut<CapsFeaturesRef> for CapsFeatures[src]

impl AsRef<CapsFeaturesRef> for CapsFeatures[src]

impl Borrow<CapsFeaturesRef> for CapsFeatures[src]

impl BorrowMut<CapsFeaturesRef> for CapsFeatures[src]

impl Debug for CapsFeaturesRef[src]

impl Display for CapsFeaturesRef[src]

impl Send for CapsFeaturesRef[src]

impl Serialize for CapsFeaturesRef[src]

impl Sync for CapsFeaturesRef[src]

impl ToOwned for CapsFeaturesRef[src]

type Owned = CapsFeatures

The resulting type after obtaining ownership.

Auto Trait Implementations

impl RefUnwindSafe for CapsFeaturesRef

impl Unpin for CapsFeaturesRef

impl UnwindSafe for CapsFeaturesRef

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.