pub struct PluginInfo {
pub name: &'static CStr,
pub author: &'static CStr,
pub plugin_type: PluginType,
pub color_model: ColorModel,
pub major_version: i32,
pub minor_version: i32,
pub explanation: &'static CStr,
}Expand description
The type returned by the plugin to tell the application about its name, type, number of parameters, and version.
Fields§
§name: &'static CStrThe (short) name of the plugin
The plugin author
plugin_type: PluginTypeThe plugin type
color_model: ColorModelThe color model used
major_version: i32The major version of the plugin
minor_version: i32The minor version of the plugin
explanation: &'static CStrAn optional explanation string
Trait Implementations§
Source§impl Clone for PluginInfo
impl Clone for PluginInfo
Source§fn clone(&self) -> PluginInfo
fn clone(&self) -> PluginInfo
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 PluginInfo
impl Debug for PluginInfo
impl Copy for PluginInfo
Auto Trait Implementations§
impl Freeze for PluginInfo
impl RefUnwindSafe for PluginInfo
impl Send for PluginInfo
impl Sync for PluginInfo
impl Unpin for PluginInfo
impl UnwindSafe for PluginInfo
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