wtx 0.44.3

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
create_enum! {
  /// Migration repeatability
  #[derive(Clone, Copy, Debug, Eq, Ord, PartialEq, PartialOrd)]
  pub enum Repeatability<u8> {
    /// Always runs when executing a migration, regardless of the checksum
    Always = (0, "always"),
    /// When executing a migration, runs if the checksum has been changed
    OnChecksumChange = (1, "on-checksum-change")
  }
}