tabularium 0.1.5

Markdown-oriented document store library (SQLite + Tantivy)
Documentation
1
2
3
4
5
6
7
//! Stable JSON-RPC 2.0 `error.code` values returned by tabularium servers.
//!
//! Used by `tabularium-server` and the `rpc::Client` so upsert and other logic do not
//! depend on parsing English `error.message` strings.

/// Document or directory name already exists ([`crate::Error::Duplicate`]).
pub const DUPLICATE_RESOURCE: i32 = -32002;