rbatis 4.7.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
12
pub mod snowflake;
pub mod object_id;

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

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

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