[−][src]Struct gstreamer::memory::Memory
Implementations
impl Memory
[src]
pub unsafe fn from_glib_none(ptr: *const GstMemory) -> Self
[src]
pub unsafe fn from_glib_full(ptr: *const GstMemory) -> Self
[src]
pub unsafe fn from_glib_borrow(ptr: *const GstMemory) -> Borrowed<Self>
[src]
pub unsafe fn replace_ptr(&mut self, ptr: *mut GstMemory)
[src]
pub fn make_mut(&mut self) -> &mut MemoryRef
[src]
pub fn get_mut(&mut self) -> Option<&mut MemoryRef>
[src]
pub fn is_writable(&self) -> bool
[src]
pub unsafe fn into_ptr(self) -> *mut GstMemory
[src]
impl Memory
[src]
pub fn with_size(size: usize) -> Self
[src]
pub fn with_size_and_params(size: usize, params: &AllocationParams) -> Self
[src]
pub fn from_slice<T: AsRef<[u8]> + Send + 'static>(slice: T) -> Self
[src]
pub fn from_mut_slice<T: AsMut<[u8]> + Send + 'static>(slice: T) -> Self
[src]
pub fn into_mapped_memory_readable(self) -> Result<MappedMemory<Readable>, Self>
[src]
pub fn into_mapped_memory_writable(self) -> Result<MappedMemory<Writable>, Self>
[src]
Methods from Deref<Target = MemoryRef>
pub unsafe fn as_ptr(&self) -> *const GstMemory
[src]
pub unsafe fn as_mut_ptr(&self) -> *mut GstMemory
[src]
pub fn copy(&self) -> Memory
[src]
pub fn get_allocator(&self) -> Option<Allocator>
[src]
pub fn get_parent(&self) -> Option<&MemoryRef>
[src]
pub fn get_maxsize(&self) -> usize
[src]
pub fn get_align(&self) -> usize
[src]
pub fn get_offset(&self) -> usize
[src]
pub fn get_size(&self) -> usize
[src]
pub fn get_flags(&self) -> MemoryFlags
[src]
pub fn copy_part(&self, offset: isize, size: Option<usize>) -> Memory
[src]
pub fn is_span(&self, mem2: &MemoryRef) -> Option<usize>
[src]
pub fn is_type(&self, mem_type: &str) -> bool
[src]
pub fn map_readable(&self) -> Result<MemoryMap<'_, Readable>, BoolError>
[src]
pub fn share(&self, offset: isize, size: Option<usize>) -> Memory
[src]
pub fn dump(&self, size: Option<usize>) -> Dump<'_>
[src]
Trait Implementations
impl AsRef<MemoryRef> for Memory
[src]
impl Borrow<MemoryRef> for Memory
[src]
impl Clone for Memory
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for Memory
[src]
impl Deref for Memory
[src]
type Target = MemoryRef
The resulting type after dereferencing.
fn deref(&self) -> &Self::Target
[src]
impl Drop for Memory
[src]
impl FromGlibContainerAsVec<*mut GstMemory, *const *mut GstMemory> for Memory
[src]
unsafe fn from_glib_none_num_as_vec(
ptr: *const *mut GstMemory,
num: usize
) -> Vec<Self>
[src]
ptr: *const *mut GstMemory,
num: usize
) -> Vec<Self>
unsafe fn from_glib_container_num_as_vec(
_: *const *mut GstMemory,
_: usize
) -> Vec<Self>
[src]
_: *const *mut GstMemory,
_: usize
) -> Vec<Self>
unsafe fn from_glib_full_num_as_vec(
_: *const *mut GstMemory,
_: usize
) -> Vec<Self>
[src]
_: *const *mut GstMemory,
_: usize
) -> Vec<Self>
impl FromGlibContainerAsVec<*mut GstMemory, *mut *mut GstMemory> for Memory
[src]
unsafe fn from_glib_none_num_as_vec(
ptr: *mut *mut GstMemory,
num: usize
) -> Vec<Self>
[src]
ptr: *mut *mut GstMemory,
num: usize
) -> Vec<Self>
unsafe fn from_glib_container_num_as_vec(
ptr: *mut *mut GstMemory,
num: usize
) -> Vec<Self>
[src]
ptr: *mut *mut GstMemory,
num: usize
) -> Vec<Self>
unsafe fn from_glib_full_num_as_vec(
ptr: *mut *mut GstMemory,
num: usize
) -> Vec<Self>
[src]
ptr: *mut *mut GstMemory,
num: usize
) -> Vec<Self>
impl FromGlibPtrArrayContainerAsVec<*mut GstMemory, *const *mut GstMemory> for Memory
[src]
unsafe fn from_glib_none_as_vec(ptr: *const *mut GstMemory) -> Vec<Self>
[src]
unsafe fn from_glib_container_as_vec(_: *const *mut GstMemory) -> Vec<Self>
[src]
unsafe fn from_glib_full_as_vec(_: *const *mut GstMemory) -> Vec<Self>
[src]
impl FromGlibPtrArrayContainerAsVec<*mut GstMemory, *mut *mut GstMemory> for Memory
[src]
unsafe fn from_glib_none_as_vec(ptr: *mut *mut GstMemory) -> Vec<Self>
[src]
unsafe fn from_glib_container_as_vec(ptr: *mut *mut GstMemory) -> Vec<Self>
[src]
unsafe fn from_glib_full_as_vec(ptr: *mut *mut GstMemory) -> Vec<Self>
[src]
impl FromGlibPtrBorrow<*const GstMemory> for Memory
[src]
unsafe fn from_glib_borrow(ptr: *const GstMemory) -> Borrowed<Self>
[src]
impl FromGlibPtrBorrow<*mut GstMemory> for Memory
[src]
unsafe fn from_glib_borrow(ptr: *mut GstMemory) -> Borrowed<Self>
[src]
impl FromGlibPtrFull<*const GstMemory> for Memory
[src]
unsafe fn from_glib_full(ptr: *const GstMemory) -> Self
[src]
impl FromGlibPtrFull<*mut GstMemory> for Memory
[src]
unsafe fn from_glib_full(ptr: *mut GstMemory) -> Self
[src]
impl FromGlibPtrNone<*const GstMemory> for Memory
[src]
unsafe fn from_glib_none(ptr: *const GstMemory) -> Self
[src]
impl FromGlibPtrNone<*mut GstMemory> for Memory
[src]
unsafe fn from_glib_none(ptr: *mut GstMemory) -> Self
[src]
impl<'a> FromValueOptional<'a> for Memory
[src]
unsafe fn from_value_optional(v: &'a Value) -> Option<Self>
[src]
impl GlibPtrDefault for Memory
[src]
impl Send for Memory
[src]
impl SetValue for Memory
[src]
impl SetValueOptional for Memory
[src]
unsafe fn set_value_optional(v: &mut Value, s: Option<&Self>)
[src]
impl StaticType for Memory
[src]
fn static_type() -> Type
[src]
impl Sync for Memory
[src]
impl<'a> ToGlibContainerFromSlice<'a, *const *mut GstMemory> for Memory
[src]
type Storage = (Vec<Stash<'a, *mut GstMemory, Memory>>, Option<Vec<*mut GstMemory>>)
fn to_glib_none_from_slice(
t: &'a [Memory]
) -> (*const *mut GstMemory, Self::Storage)
[src]
t: &'a [Memory]
) -> (*const *mut GstMemory, Self::Storage)
fn to_glib_container_from_slice(
_: &'a [Memory]
) -> (*const *mut GstMemory, Self::Storage)
[src]
_: &'a [Memory]
) -> (*const *mut GstMemory, Self::Storage)
fn to_glib_full_from_slice(_: &[Memory]) -> *const *mut GstMemory
[src]
impl<'a> ToGlibContainerFromSlice<'a, *mut *mut GstMemory> for Memory
[src]
type Storage = (Vec<Stash<'a, *mut GstMemory, Self>>, Option<Vec<*mut GstMemory>>)
fn to_glib_none_from_slice(
t: &'a [Memory]
) -> (*mut *mut GstMemory, Self::Storage)
[src]
t: &'a [Memory]
) -> (*mut *mut GstMemory, Self::Storage)
fn to_glib_container_from_slice(
t: &'a [Memory]
) -> (*mut *mut GstMemory, Self::Storage)
[src]
t: &'a [Memory]
) -> (*mut *mut GstMemory, Self::Storage)
fn to_glib_full_from_slice(t: &[Memory]) -> *mut *mut GstMemory
[src]
impl<'a> ToGlibPtr<'a, *const GstMemory> for Memory
[src]
type Storage = &'a Self
fn to_glib_none(&'a self) -> Stash<'a, *const GstMemory, Self>
[src]
fn to_glib_full(&self) -> *const GstMemory
[src]
fn to_glib_container(&'a self) -> Stash<'a, P, Self>
[src]
impl<'a> ToGlibPtr<'a, *mut GstMemory> for Memory
[src]
type Storage = &'a Self
fn to_glib_none(&'a self) -> Stash<'a, *mut GstMemory, Self>
[src]
fn to_glib_full(&self) -> *mut GstMemory
[src]
fn to_glib_container(&'a self) -> Stash<'a, P, Self>
[src]
impl<'a> ToGlibPtrMut<'a, *mut GstMemory> for Memory
[src]
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<'a, T> ToGlibContainerFromSlice<'a, *const GList> for T where
T: GlibPtrDefault + ToGlibPtr<'a, <T as GlibPtrDefault>::GlibType>,
[src]
T: GlibPtrDefault + ToGlibPtr<'a, <T as GlibPtrDefault>::GlibType>,
type Storage = (Option<List>, Vec<Stash<'a, <T as GlibPtrDefault>::GlibType, T>>)
fn to_glib_none_from_slice(
t: &'a [T]
) -> (*const GList, <T as ToGlibContainerFromSlice<'a, *const GList>>::Storage)
[src]
t: &'a [T]
) -> (*const GList, <T as ToGlibContainerFromSlice<'a, *const GList>>::Storage)
fn to_glib_container_from_slice(
_t: &'a [T]
) -> (*const GList, <T as ToGlibContainerFromSlice<'a, *const GList>>::Storage)
[src]
_t: &'a [T]
) -> (*const GList, <T as ToGlibContainerFromSlice<'a, *const GList>>::Storage)
fn to_glib_full_from_slice(_t: &[T]) -> *const GList
[src]
impl<'a, T> ToGlibContainerFromSlice<'a, *const GPtrArray> for T where
T: GlibPtrDefault + ToGlibPtr<'a, <T as GlibPtrDefault>::GlibType>,
[src]
T: GlibPtrDefault + ToGlibPtr<'a, <T as GlibPtrDefault>::GlibType>,
type Storage = (Option<PtrArray>, Vec<Stash<'a, <T as GlibPtrDefault>::GlibType, T>>)
fn to_glib_none_from_slice(
t: &'a [T]
) -> (*const GPtrArray, <T as ToGlibContainerFromSlice<'a, *const GPtrArray>>::Storage)
[src]
t: &'a [T]
) -> (*const GPtrArray, <T as ToGlibContainerFromSlice<'a, *const GPtrArray>>::Storage)
fn to_glib_container_from_slice(
_t: &'a [T]
) -> (*const GPtrArray, <T as ToGlibContainerFromSlice<'a, *const GPtrArray>>::Storage)
[src]
_t: &'a [T]
) -> (*const GPtrArray, <T as ToGlibContainerFromSlice<'a, *const GPtrArray>>::Storage)
fn to_glib_full_from_slice(_t: &[T]) -> *const GPtrArray
[src]
impl<'a, T> ToGlibContainerFromSlice<'a, *mut GArray> for T where
T: GlibPtrDefault + ToGlibPtr<'a, <T as GlibPtrDefault>::GlibType>,
[src]
T: GlibPtrDefault + ToGlibPtr<'a, <T as GlibPtrDefault>::GlibType>,
type Storage = (Option<Array>, Vec<Stash<'a, <T as GlibPtrDefault>::GlibType, T>>)
fn to_glib_none_from_slice(
t: &'a [T]
) -> (*mut GArray, <T as ToGlibContainerFromSlice<'a, *mut GArray>>::Storage)
[src]
t: &'a [T]
) -> (*mut GArray, <T as ToGlibContainerFromSlice<'a, *mut GArray>>::Storage)
fn to_glib_container_from_slice(
t: &'a [T]
) -> (*mut GArray, <T as ToGlibContainerFromSlice<'a, *mut GArray>>::Storage)
[src]
t: &'a [T]
) -> (*mut GArray, <T as ToGlibContainerFromSlice<'a, *mut GArray>>::Storage)
fn to_glib_full_from_slice(t: &[T]) -> *mut GArray
[src]
impl<'a, T> ToGlibContainerFromSlice<'a, *mut GList> for T where
T: GlibPtrDefault + ToGlibPtr<'a, <T as GlibPtrDefault>::GlibType>,
[src]
T: GlibPtrDefault + ToGlibPtr<'a, <T as GlibPtrDefault>::GlibType>,
type Storage = (Option<List>, Vec<Stash<'a, <T as GlibPtrDefault>::GlibType, T>>)
fn to_glib_none_from_slice(
t: &'a [T]
) -> (*mut GList, <T as ToGlibContainerFromSlice<'a, *mut GList>>::Storage)
[src]
t: &'a [T]
) -> (*mut GList, <T as ToGlibContainerFromSlice<'a, *mut GList>>::Storage)
fn to_glib_container_from_slice(
t: &'a [T]
) -> (*mut GList, <T as ToGlibContainerFromSlice<'a, *mut GList>>::Storage)
[src]
t: &'a [T]
) -> (*mut GList, <T as ToGlibContainerFromSlice<'a, *mut GList>>::Storage)
fn to_glib_full_from_slice(t: &[T]) -> *mut GList
[src]
impl<'a, T> ToGlibContainerFromSlice<'a, *mut GPtrArray> for T where
T: GlibPtrDefault + ToGlibPtr<'a, <T as GlibPtrDefault>::GlibType>,
[src]
T: GlibPtrDefault + ToGlibPtr<'a, <T as GlibPtrDefault>::GlibType>,
type Storage = (Option<PtrArray>, Vec<Stash<'a, <T as GlibPtrDefault>::GlibType, T>>)
fn to_glib_none_from_slice(
t: &'a [T]
) -> (*mut GPtrArray, <T as ToGlibContainerFromSlice<'a, *mut GPtrArray>>::Storage)
[src]
t: &'a [T]
) -> (*mut GPtrArray, <T as ToGlibContainerFromSlice<'a, *mut GPtrArray>>::Storage)
fn to_glib_container_from_slice(
t: &'a [T]
) -> (*mut GPtrArray, <T as ToGlibContainerFromSlice<'a, *mut GPtrArray>>::Storage)
[src]
t: &'a [T]
) -> (*mut GPtrArray, <T as ToGlibContainerFromSlice<'a, *mut GPtrArray>>::Storage)
fn to_glib_full_from_slice(t: &[T]) -> *mut GPtrArray
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> ToSendValue for T where
T: ToValue + SetValue + Send + ?Sized,
[src]
T: ToValue + SetValue + Send + ?Sized,
fn to_send_value(&self) -> SendValue
[src]
impl<T> ToValue for T where
T: SetValue + ?Sized,
[src]
T: SetValue + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,