toasty_core/lib.rs
1#[macro_use]
2mod macros;
3
4pub mod driver;
5pub use driver::Connection;
6
7mod error;
8pub use error::Error;
9
10pub mod schema;
11pub use schema::Schema;
12
13pub mod stmt;
14
15/// A Result type alias that uses Toasty's [`Error`] type.
16pub type Result<T, E = Error> = core::result::Result<T, E>;
17
18pub use async_trait::async_trait;