gstreamer_sys

Type Alias GstBufferMapInfo

Source
pub type GstBufferMapInfo = GstMapInfo;

Aliased Type§

struct GstBufferMapInfo {
    pub memory: *mut GstMemory,
    pub flags: u32,
    pub data: *mut u8,
    pub size: usize,
    pub maxsize: usize,
    pub user_data: [*mut c_void; 4],
    pub _gst_reserved: [*mut c_void; 4],
}

Fields§

§memory: *mut GstMemory§flags: u32§data: *mut u8§size: usize§maxsize: usize§user_data: [*mut c_void; 4]§_gst_reserved: [*mut c_void; 4]

Trait Implementations

Source§

impl Clone for GstMapInfo

Source§

fn clone(&self) -> GstMapInfo

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for GstMapInfo

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for GstMapInfo