#[repr(C)]pub struct pw_impl_node_rt_events {
pub version: u32,
pub drained: Option<unsafe extern "C" fn(data: *mut c_void)>,
pub xrun: Option<unsafe extern "C" fn(data: *mut c_void)>,
pub start: Option<unsafe extern "C" fn(data: *mut c_void)>,
pub complete: Option<unsafe extern "C" fn(data: *mut c_void)>,
pub incomplete: Option<unsafe extern "C" fn(data: *mut c_void)>,
pub timeout: Option<unsafe extern "C" fn(data: *mut c_void)>,
}
Fields§
§version: u32
§drained: Option<unsafe extern "C" fn(data: *mut c_void)>
the node is drained
xrun: Option<unsafe extern "C" fn(data: *mut c_void)>
the node had an xrun
start: Option<unsafe extern "C" fn(data: *mut c_void)>
the driver node starts processing
complete: Option<unsafe extern "C" fn(data: *mut c_void)>
the driver node completed processing
incomplete: Option<unsafe extern "C" fn(data: *mut c_void)>
the driver node did not complete processing
timeout: Option<unsafe extern "C" fn(data: *mut c_void)>
the node had a timeout
Trait Implementations§
Source§impl Clone for pw_impl_node_rt_events
impl Clone for pw_impl_node_rt_events
Source§fn clone(&self) -> pw_impl_node_rt_events
fn clone(&self) -> pw_impl_node_rt_events
Returns a duplicate 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_impl_node_rt_events
impl Debug for pw_impl_node_rt_events
impl Copy for pw_impl_node_rt_events
Auto Trait Implementations§
impl Freeze for pw_impl_node_rt_events
impl RefUnwindSafe for pw_impl_node_rt_events
impl Send for pw_impl_node_rt_events
impl Sync for pw_impl_node_rt_events
impl Unpin for pw_impl_node_rt_events
impl UnwindSafe for pw_impl_node_rt_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