Struct nih_plug::wrapper::clap::clap_plugin_entry
#[repr(C)]pub struct clap_plugin_entry {
pub clap_version: clap_version,
pub init: Option<unsafe extern "C" fn(_: *const i8) -> bool>,
pub deinit: Option<unsafe extern "C" fn()>,
pub get_factory: Option<unsafe extern "C" fn(_: *const i8) -> *const c_void>,
}
Fields§
§clap_version: clap_version
§init: Option<unsafe extern "C" fn(_: *const i8) -> bool>
§deinit: Option<unsafe extern "C" fn()>
§get_factory: Option<unsafe extern "C" fn(_: *const i8) -> *const c_void>
Trait Implementations§
§impl Clone for clap_plugin_entry
impl Clone for clap_plugin_entry
§fn clone(&self) -> clap_plugin_entry
fn clone(&self) -> clap_plugin_entry
Returns a copy 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 more§impl Debug for clap_plugin_entry
impl Debug for clap_plugin_entry
impl Copy for clap_plugin_entry
Auto Trait Implementations§
impl RefUnwindSafe for clap_plugin_entry
impl Send for clap_plugin_entry
impl Sync for clap_plugin_entry
impl Unpin for clap_plugin_entry
impl UnwindSafe for clap_plugin_entry
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