evobench_tools/serde_types/
mod.rs

1//! Helper/wrapper types with good serde support
2//!
3//! I.e. are made explicitly for good representations that can be used
4//! in config and state files. They (generally) also support
5//! `FromStr`, and thus are also usable with the `clap` command line
6//! parser.
7
8pub mod allowed_env_var;
9pub mod date_and_time;
10pub mod git_branch_name;
11pub mod git_hash;
12pub mod git_reference;
13pub mod git_url;
14pub mod key_val;
15pub mod map;
16pub mod priority;
17pub mod proper_dirname;
18pub mod proper_filename;
19pub mod regex;
20pub mod tilde_path;
21pub mod val_or_ref;