#[repr(C)]pub struct clap_plugin_entry {
    pub clap_version: clap_version,
    pub init: Option<unsafe extern "C" fn(plugin_path: *const c_char) -> bool>,
    pub deinit: Option<unsafe extern "C" fn()>,
    pub get_factory: Option<unsafe extern "C" fn(factory_id: *const c_char) -> *const c_void>,
}Fields§
§clap_version: clap_version§init: Option<unsafe extern "C" fn(plugin_path: *const c_char) -> bool>§deinit: Option<unsafe extern "C" fn()>§get_factory: Option<unsafe extern "C" fn(factory_id: *const c_char) -> *const c_void>Trait Implementations§
Source§impl Clone for clap_plugin_entry
 
impl Clone for clap_plugin_entry
Source§fn clone(&self) -> clap_plugin_entry
 
fn clone(&self) -> clap_plugin_entry
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_plugin_entry
 
impl Debug for clap_plugin_entry
impl Copy for clap_plugin_entry
Auto Trait Implementations§
impl Freeze for clap_plugin_entry
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