Skip to main content

reifydb_type/
lib.rs

1// SPDX-License-Identifier: MIT
2// Copyright (c) 2025 ReifyDB
3
4// #![cfg_attr(not(debug_assertions), deny(warnings))]
5
6pub mod error;
7pub mod fragment;
8pub mod params;
9pub mod storage;
10pub mod util;
11pub mod value;
12
13/// Result type alias for this crate
14pub type Result<T> = std::result::Result<T, error::Error>;