sea_query/types/iden/
mod.rs

1//! Identifier types.
2
3// Intentionally not `pub`, so that we're free to experiment with the internal structure.
4mod compound;
5mod core;
6mod qualification;
7mod quote;
8#[cfg(test)]
9mod tests;
10
11pub use compound::*;
12pub use core::*;
13pub use qualification::*;
14pub use quote::*;