Struct pipewire_sys::pw_control_events
source · #[repr(C)]pub struct pw_control_events {
pub version: u32,
pub destroy: Option<unsafe extern "C" fn(data: *mut c_void)>,
pub free: Option<unsafe extern "C" fn(data: *mut c_void)>,
pub linked: Option<unsafe extern "C" fn(data: *mut c_void, other: *mut pw_control)>,
pub unlinked: Option<unsafe extern "C" fn(data: *mut c_void, other: *mut pw_control)>,
}
Expand description
Port events, use \ref pw_control_add_listener
Fields§
§version: u32
§destroy: Option<unsafe extern "C" fn(data: *mut c_void)>
The control is destroyed
free: Option<unsafe extern "C" fn(data: *mut c_void)>
The control is freed
linked: Option<unsafe extern "C" fn(data: *mut c_void, other: *mut pw_control)>
control is linked to another control
unlinked: Option<unsafe extern "C" fn(data: *mut c_void, other: *mut pw_control)>
control is unlinked from another control
Trait Implementations§
source§impl Clone for pw_control_events
impl Clone for pw_control_events
source§fn clone(&self) -> pw_control_events
fn clone(&self) -> pw_control_events
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for pw_control_events
impl Debug for pw_control_events
impl Copy for pw_control_events
Auto Trait Implementations§
impl RefUnwindSafe for pw_control_events
impl Send for pw_control_events
impl Sync for pw_control_events
impl Unpin for pw_control_events
impl UnwindSafe for pw_control_events
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more