#![forbid(unsafe_code)]
#![warn(
clippy::cargo,
missing_docs,
// clippy::missing_docs_in_private_items,
clippy::nursery,
clippy::pedantic,
future_incompatible,
rust_2018_idioms,
)]
#![cfg_attr(doc, warn(rustdoc))]
#![allow(
clippy::missing_errors_doc, // TODO
// clippy::missing_panics_doc, // not on stable yet
clippy::option_if_let_else,
)]
pub mod connection;
pub mod document;
pub mod schema;
pub mod transaction;
use schema::collection;
#[derive(thiserror::Error, Debug)]
pub enum Error {
#[error("error working with storage: {0}")]
Storage(String),
#[error("attempted to access a collection not registered with this schema")]
CollectionNotFound,
#[error("the requested document id {1} from collection {0} was not found")]
DocumentNotFound(collection::Id, u64),
#[error("a conflict was detected while updating document id {1} from collection {0}")]
DocumentConflict(collection::Id, u64),
}
impl From<serde_cbor::Error> for Error {
fn from(err: serde_cbor::Error) -> Self {
Self::Storage(err.to_string())
}
}
#[cfg(any(feature = "test-util", test))]
#[allow(missing_docs)]
pub mod test_util;