oxisqlite-core 0.2.1

oxisqlite-core — core engine of the Pure-Rust SQLite-compatible oxisqlite fork (C-free)
Documentation
1
2
3
4
5
6
/// Common results that different functions can return in limbo.
pub enum LimboResult {
    /// Couldn't acquire a lock
    Busy,
    Ok,
}