Enum mariadb::plugin::PluginType
source · #[non_exhaustive]pub enum PluginType {
MyUdf = 0,
MyStorageEngine = 1,
MyFtParser = 2,
MyDaemon = 3,
MyInformationSchema = 4,
MyAudit = 5,
MyReplication = 6,
MyAuthentication = 7,
MariaPasswordValidation = 8,
MariaEncryption = 9,
MariaDataType = 10,
MariaFunction = 11,
}
Expand description
Defines a type of plugin. This determines the required implementation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
MyUdf = 0
MyStorageEngine = 1
MyFtParser = 2
MyDaemon = 3
MyInformationSchema = 4
MyAudit = 5
MyReplication = 6
MyAuthentication = 7
MariaPasswordValidation = 8
MariaEncryption = 9
Use this plugin type both for key managers and for full encryption plugins
MariaDataType = 10
MariaFunction = 11
Auto Trait Implementations§
impl RefUnwindSafe for PluginType
impl Send for PluginType
impl Sync for PluginType
impl Unpin for PluginType
impl UnwindSafe for PluginType
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