1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//! Common re-exports for convenient importing.
//!
//! The prelude provides one-stop access to the most commonly used types,
//! reducing boilerplate for typical usage patterns.
//!
//! # What's Included
//!
//! - [`DaosError`] and [`Result`] - Error handling
//! - [`DaosClient`] and [`DaosClientBuilder`] - High-level facade
//! - [`ObjectType`], [`ObjectClass`], [`ObjectOpenMode`] - Object configuration
//! - [`ObjectId`] - Object identification
//! - [`DKey`], [`AKey`], [`IoBuffer`] - Key/value types
//! - [`Tx`] - Transaction marker
//!
//! # Example
//!
//! ```ignore
//! use daoxide::prelude::*;
//!
//! let client = DaosClient::builder()
//! .pool_label("mypool")
//! .container_label("mycontainer")
//! .build()?;
//! ```
// Error handling
pub use crate;
// High-level facade
pub use crate;
// Object types
pub use crate;
// Key/value IO types
pub use crate;
// Transaction
pub use crateTx;