[][src]Struct gstreamer_gl_sys::GstGLWindow

#[repr(C)]
pub struct GstGLWindow {
    pub parent: GstObject,
    pub lock: GMutex,
    pub display: *mut GstGLDisplay,
    pub context_ref: GWeakRef,
    pub is_drawing: gboolean,
    pub draw: GstGLWindowCB,
    pub draw_data: gpointer,
    pub draw_notify: GDestroyNotify,
    pub close: GstGLWindowCB,
    pub close_data: gpointer,
    pub close_notify: GDestroyNotify,
    pub resize: GstGLWindowResizeCB,
    pub resize_data: gpointer,
    pub resize_notify: GDestroyNotify,
    pub queue_resize: gboolean,
    pub main_context: *mut GMainContext,
    pub priv_: *mut GstGLWindowPrivate,
    pub _reserved: [gpointer; 4],
}

Fields

parent: GstObjectlock: GMutexdisplay: *mut GstGLDisplaycontext_ref: GWeakRefis_drawing: gbooleandraw: GstGLWindowCBdraw_data: gpointerdraw_notify: GDestroyNotifyclose: GstGLWindowCBclose_data: gpointerclose_notify: GDestroyNotifyresize: GstGLWindowResizeCBresize_data: gpointerresize_notify: GDestroyNotifyqueue_resize: gbooleanmain_context: *mut GMainContextpriv_: *mut GstGLWindowPrivate_reserved: [gpointer; 4]

Trait Implementations

impl Clone for GstGLWindow[src]

impl Copy for GstGLWindow[src]

impl Debug for GstGLWindow[src]

Auto Trait Implementations

impl RefUnwindSafe for GstGLWindow

impl !Send for GstGLWindow

impl !Sync for GstGLWindow

impl Unpin for GstGLWindow

impl UnwindSafe for GstGLWindow

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.