Trait mariadb::storage::Handlerton  
source · pub trait Handlerton {
    type Handler: Handler;
    type SavePoint;
    const FLAGS: u32 = 0u32;
    const TABLEFILE_EXTENSIONS: &'static [&'static str] = _;
}Expand description
A “handlerton” (“handler singleton”) is the entrypoint for a storage engine handler.
This defines registration and creation information.
Required Associated Types§
Provided Associated Constants§
const FLAGS: u32 = 0u32
sourceconst TABLEFILE_EXTENSIONS: &'static [&'static str] = _
 
const TABLEFILE_EXTENSIONS: &'static [&'static str] = _
Extensions of files created for a single table in the database directory
(datadir/db_name/).
Object Safety§
This trait is not object safe.