pub trait Mode {
    const ID: u32;
    const NAME: &'static str;

    fn is_block() -> bool { ... }
    fn is_vectored() -> bool { ... }
    fn is_streaming() -> bool { ... }
}
Expand description

Compile mode

Required Associated Constants

Id of mode

Name of mode

Provided Methods

The given database is a block database.

The given database is a block database.

The given database is a block database.

Implementors