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§

source

type Handler: Handler

source

type SavePoint

A type of data that is stored during a savepoint.

Provided Associated Constants§

source

const FLAGS: u32 = 0u32

source

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.

Implementors§