[][src]Struct gstreamer_sys::GstPluginDesc

#[repr(C)]
pub struct GstPluginDesc {
    pub major_version: c_int,
    pub minor_version: c_int,
    pub name: *const c_char,
    pub description: *const c_char,
    pub plugin_init: GstPluginInitFunc,
    pub version: *const c_char,
    pub license: *const c_char,
    pub source: *const c_char,
    pub package: *const c_char,
    pub origin: *const c_char,
    pub release_datetime: *const c_char,
    pub _gst_reserved: [gpointer; 4],
}

Fields

major_version: c_intminor_version: c_intname: *const c_chardescription: *const c_charplugin_init: GstPluginInitFuncversion: *const c_charlicense: *const c_charsource: *const c_charpackage: *const c_charorigin: *const c_charrelease_datetime: *const c_char_gst_reserved: [gpointer; 4]

Trait Implementations

impl Clone for GstPluginDesc[src]

impl Copy for GstPluginDesc[src]

impl Debug for GstPluginDesc[src]

Auto Trait Implementations

impl RefUnwindSafe for GstPluginDesc

impl !Send for GstPluginDesc

impl !Sync for GstPluginDesc

impl Unpin for GstPluginDesc

impl UnwindSafe for GstPluginDesc

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, 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.