#[repr(C)]pub struct ove_audio_node_ops {
pub configure: Option<unsafe extern "C" fn(*mut c_void, *const ove_audio_fmt, *mut ove_audio_fmt) -> i32>,
pub start: Option<unsafe extern "C" fn(*mut c_void) -> i32>,
pub stop: Option<unsafe extern "C" fn(*mut c_void) -> i32>,
pub process: Option<unsafe extern "C" fn(*mut c_void, *const ove_audio_buf, *mut ove_audio_buf) -> i32>,
pub destroy: Option<unsafe extern "C" fn(*mut c_void)>,
}Fields§
§configure: Option<unsafe extern "C" fn(*mut c_void, *const ove_audio_fmt, *mut ove_audio_fmt) -> i32>§start: Option<unsafe extern "C" fn(*mut c_void) -> i32>§stop: Option<unsafe extern "C" fn(*mut c_void) -> i32>§process: Option<unsafe extern "C" fn(*mut c_void, *const ove_audio_buf, *mut ove_audio_buf) -> i32>§destroy: Option<unsafe extern "C" fn(*mut c_void)>Auto Trait Implementations§
impl Freeze for ove_audio_node_ops
impl RefUnwindSafe for ove_audio_node_ops
impl Send for ove_audio_node_ops
impl Sync for ove_audio_node_ops
impl Unpin for ove_audio_node_ops
impl UnwindSafe for ove_audio_node_ops
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