#[repr(C)]pub struct clap_plugin_params {
pub count: unsafe extern "C" fn(plugin: *const clap_plugin) -> u32,
pub get_info: unsafe extern "C" fn(plugin: *const clap_plugin, param_index: u32, param_info: *mut clap_param_info) -> bool,
pub get_value: unsafe extern "C" fn(plugin: *const clap_plugin, param_id: clap_id, value: *mut f64) -> bool,
pub value_to_text: unsafe extern "C" fn(plugin: *const clap_plugin, param_id: clap_id, value: f64, display: *mut c_char, size: u32) -> bool,
pub text_to_value: unsafe extern "C" fn(plugin: *const clap_plugin, param_id: clap_id, display: *const c_char, value: *mut f64) -> bool,
pub flush: unsafe extern "C" fn(plugin: *const clap_plugin, in_: *const clap_input_events, out: *const clap_output_events),
}Fields
count: unsafe extern "C" fn(plugin: *const clap_plugin) -> u32get_info: unsafe extern "C" fn(plugin: *const clap_plugin, param_index: u32, param_info: *mut clap_param_info) -> boolget_value: unsafe extern "C" fn(plugin: *const clap_plugin, param_id: clap_id, value: *mut f64) -> boolvalue_to_text: unsafe extern "C" fn(plugin: *const clap_plugin, param_id: clap_id, value: f64, display: *mut c_char, size: u32) -> booltext_to_value: unsafe extern "C" fn(plugin: *const clap_plugin, param_id: clap_id, display: *const c_char, value: *mut f64) -> boolflush: unsafe extern "C" fn(plugin: *const clap_plugin, in_: *const clap_input_events, out: *const clap_output_events)Trait Implementations
sourceimpl Clone for clap_plugin_params
impl Clone for clap_plugin_params
sourcefn clone(&self) -> clap_plugin_params
fn clone(&self) -> clap_plugin_params
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
impl Copy for clap_plugin_params
Auto Trait Implementations
impl RefUnwindSafe for clap_plugin_params
impl Send for clap_plugin_params
impl Sync for clap_plugin_params
impl Unpin for clap_plugin_params
impl UnwindSafe for clap_plugin_params
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more