[][src]Struct gstreamer_sys::GstBuffer

#[repr(C)]
pub struct GstBuffer {
    pub mini_object: GstMiniObject,
    pub pool: *mut GstBufferPool,
    pub pts: GstClockTime,
    pub dts: GstClockTime,
    pub duration: GstClockTime,
    pub offset: u64,
    pub offset_end: u64,
}

Fields

mini_object: GstMiniObjectpool: *mut GstBufferPoolpts: GstClockTimedts: GstClockTimeduration: GstClockTimeoffset: u64offset_end: u64

Trait Implementations

impl Clone for GstBuffer[src]

impl Copy for GstBuffer[src]

impl Debug for GstBuffer[src]

Auto Trait Implementations

impl RefUnwindSafe for GstBuffer

impl !Send for GstBuffer

impl !Sync for GstBuffer

impl Unpin for GstBuffer

impl UnwindSafe for GstBuffer

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.