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
Provided Methods
sourcefn is_vectored() -> bool
fn is_vectored() -> bool
The given database is a block database.
sourcefn is_streaming() -> bool
fn is_streaming() -> bool
The given database is a block database.