pub unsafe trait MiniObjectwhere
    Self: Sized,
{ type GstType; unsafe fn as_ptr(&self) -> *const Self::GstType { ... } unsafe fn as_mut_ptr(&self) -> *mut Self::GstType { ... } unsafe fn from_ptr<'a>(ptr: *const Self::GstType) -> &'a Self { ... } unsafe fn from_mut_ptr<'a>(ptr: *mut Self::GstType) -> &'a mut Self { ... } fn copy(&self) -> GstRc<Self> { ... } }

Required Associated Types

Provided Methods

Implementors