[][src]Struct gstreamer_rtp_sys::GstRTPBaseDepayloadClass

#[repr(C)]
pub struct GstRTPBaseDepayloadClass {
    pub parent_class: GstElementClass,
    pub set_caps: Option<unsafe extern "C" fn(_: *mut GstRTPBaseDepayload, _: *mut GstCaps) -> gboolean>,
    pub process: Option<unsafe extern "C" fn(_: *mut GstRTPBaseDepayload, _: *mut GstBuffer) -> *mut GstBuffer>,
    pub packet_lost: Option<unsafe extern "C" fn(_: *mut GstRTPBaseDepayload, _: *mut GstEvent) -> gboolean>,
    pub handle_event: Option<unsafe extern "C" fn(_: *mut GstRTPBaseDepayload, _: *mut GstEvent) -> gboolean>,
    pub process_rtp_packet: Option<unsafe extern "C" fn(_: *mut GstRTPBaseDepayload, _: *mut GstRTPBuffer) -> *mut GstBuffer>,
    pub _gst_reserved: [gpointer; 3],
}

Fields

parent_class: GstElementClassset_caps: Option<unsafe extern "C" fn(_: *mut GstRTPBaseDepayload, _: *mut GstCaps) -> gboolean>process: Option<unsafe extern "C" fn(_: *mut GstRTPBaseDepayload, _: *mut GstBuffer) -> *mut GstBuffer>packet_lost: Option<unsafe extern "C" fn(_: *mut GstRTPBaseDepayload, _: *mut GstEvent) -> gboolean>handle_event: Option<unsafe extern "C" fn(_: *mut GstRTPBaseDepayload, _: *mut GstEvent) -> gboolean>process_rtp_packet: Option<unsafe extern "C" fn(_: *mut GstRTPBaseDepayload, _: *mut GstRTPBuffer) -> *mut GstBuffer>_gst_reserved: [gpointer; 3]

Trait Implementations

impl Clone for GstRTPBaseDepayloadClass[src]

impl Copy for GstRTPBaseDepayloadClass[src]

impl Debug for GstRTPBaseDepayloadClass[src]

Auto Trait Implementations

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.