rust_lodash/utils/
mod.rs

1/*!
2Utility modules for Lodash-RS.
3
4This module contains utility functions, type conversions, and helper traits
5used throughout the library.
6*/
7
8pub mod error;
9pub mod type_conv;
10pub mod async_support;
11
12// Re-export commonly used items
13pub use error::{LodashError, Result, IntoLodashError};
14pub use type_conv::*;
15
16#[cfg(feature = "async")]
17pub use async_support::*;