Skip to main content

reifydb_value/
lib.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2026 ReifyDB
3
4#![cfg_attr(not(debug_assertions), deny(clippy::disallowed_methods))]
5#![cfg_attr(debug_assertions, warn(clippy::disallowed_methods))]
6#![cfg_attr(not(debug_assertions), deny(warnings))]
7#![allow(clippy::tabs_in_doc_comments)]
8
9mod assertions;
10
11pub mod byte_size;
12pub mod clock;
13pub mod config;
14pub mod count;
15pub mod encoding;
16pub mod error;
17pub mod factory;
18pub mod fragment;
19pub mod params;
20pub mod util;
21pub mod value;
22
23pub type Result<T> = std::result::Result<T, error::Error>;