rbatis 4.9.2

The Rust SQL Toolkit and ORM Library. An async, pure Rust SQL crate featuring compile-time Dynamic SQL
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod object_id;
pub mod snowflake;

// Re-export IdGenerator trait
pub use snowflake::IdGenerator;

// Re-export Snowflake and related items
pub use snowflake::{new_snowflake_id, Snowflake, SNOWFLAKE};

// Re-export ObjectId and related items (but not Error to avoid conflicts)
pub use object_id::{ObjectId, ObjectIdGenerator, OID_COUNTER};