Struct mysql_plugin_api::types::Plugin
source · [−]#[repr(C)]pub struct Plugin {
pub plugin_type: PluginType,
pub info: *const c_void,
pub name: *const u8,
pub author: *const u8,
pub descr: *const u8,
pub license: License,
}
Expand description
A plugin description,
Fields
plugin_type: PluginType
The type of the plugin.
info: *const c_void
Pointer to one of the supported info structures.
These are:
StorageEngineInfo
name: *const u8
The name of the plugin.
The author (Person or organization).
descr: *const u8
The description.
license: License
The license under which the plugin is published.
Implementations
Trait Implementations
Auto Trait Implementations
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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