libtad-models 0.2.0

Time and Date API models
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use serde::Deserialize;

#[derive(Debug, Deserialize)]
#[serde(rename_all = "lowercase")]
/// Whether or not the weekdays counted were part of an included or excluded filter.
pub enum IncludedExcluded {
    /// Included.
    Included,

    /// Excluded.
    Excluded,
}