wtx 0.44.1

A collection of different transport implementations and related tools focused primarily on web technologies.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
create_enum! {
  /// Database
  #[derive(Clone, Copy, Debug, Eq, Ord, PartialEq, PartialOrd)]
  pub enum DatabaseTy<u8> {
    /// MySql
    Mysql = (1, "mysql"),
    /// PostgreSQL
    Postgres = (2, "postgres"),
    /// Unit (Dummy used for testing)
    Unit = (5, "unit")
  }
}