#[repr(C)]pub struct clap_process {
pub steady_time: i64,
pub frames_count: u32,
pub transport: *const clap_event_transport,
pub audio_inputs: *const clap_audio_buffer,
pub audio_outputs: *mut clap_audio_buffer,
pub audio_inputs_count: u32,
pub audio_outputs_count: u32,
pub in_events: *const clap_input_events,
pub out_events: *const clap_output_events,
}Fields§
§steady_time: i64§frames_count: u32§transport: *const clap_event_transport§audio_inputs: *const clap_audio_buffer§audio_outputs: *mut clap_audio_buffer§audio_inputs_count: u32§audio_outputs_count: u32§in_events: *const clap_input_events§out_events: *const clap_output_eventsTrait Implementations§
Source§impl Clone for clap_process
impl Clone for clap_process
Source§fn clone(&self) -> clap_process
fn clone(&self) -> clap_process
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 clap_process
impl Debug for clap_process
impl Copy for clap_process
impl Send for clap_process
impl Sync for clap_process
Auto Trait Implementations§
impl Freeze for clap_process
impl RefUnwindSafe for clap_process
impl Unpin for clap_process
impl UnwindSafe for clap_process
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