Skip to content

Instantly share code, notes, and snippets.

View 616b2f's full-sized avatar

Alexej Kowalew 616b2f

View GitHub Profile
@616b2f
616b2f / state.rs
Created October 13, 2021 20:58 — forked from dbrgn/state.rs
Custom Text based Diesel type for an enum
#[derive(Serialize, Deserialize, Debug, PartialEq, Eq)]
#[serde(rename_all="snake_case")]
pub enum State {
Pending,
Sending,
Sent,
Failed,
}
impl fmt::Display for State {