#[repr(C)]pub struct ove_audio_graph {
pub nodes: [ove_audio_node; 16],
pub node_count: u32,
pub edges: [ove_audio_edge; 16],
pub edge_count: u32,
pub exec_order: [u32; 16],
pub exec_count: u32,
pub buffers: [ove_audio_buf; 16],
pub buf_storage: *mut c_void,
pub frames_per_period: u32,
pub state: u32,
pub stats: ove_audio_graph_stats,
}Fields§
§nodes: [ove_audio_node; 16]§node_count: u32§edges: [ove_audio_edge; 16]§edge_count: u32§exec_order: [u32; 16]§exec_count: u32§buffers: [ove_audio_buf; 16]§buf_storage: *mut c_void§frames_per_period: u32§state: u32§stats: ove_audio_graph_statsAuto Trait Implementations§
impl Freeze for ove_audio_graph
impl RefUnwindSafe for ove_audio_graph
impl !Send for ove_audio_graph
impl !Sync for ove_audio_graph
impl Unpin for ove_audio_graph
impl UnwindSafe for ove_audio_graph
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