#serde #deserialize #serde-derive #utilities #no-alloc

no-std serde-bool

Single value, true or false, boolean deserializers

7 releases

0.1.3 Dec 1, 2023
0.1.2 Nov 30, 2023
0.0.3 Nov 30, 2023

#827 in Encoding

Download history 52/week @ 2023-12-18 1/week @ 2023-12-25 46/week @ 2024-01-01 15/week @ 2024-01-08 75/week @ 2024-01-15 182/week @ 2024-01-22 137/week @ 2024-02-05 104/week @ 2024-02-12 109/week @ 2024-02-19 61/week @ 2024-02-26 4/week @ 2024-03-04 140/week @ 2024-03-11 3/week @ 2024-03-18 1/week @ 2024-03-25 314/week @ 2024-04-01

459 downloads per month

MIT/Apache

12KB
167 lines

serde-bool

crates.io Documentation dependency status MIT or Apache 2.0 licensed
CI codecov Version Download

Single value, true or false, boolean deserializers.

Examples

Supporting serde untagged enums where only one boolean value is valid, allowing fallthrough to the next variant. Avoids need to wrap all fields in Option<_> just in case feature is disabled.

#[derive(Debug, serde::Deserialize)]
struct Config {
    feature: FeatureConfig,
}

#[derive(Debug, serde::Deserialize)]
#[serde(untagged)]
enum FeatureConfig {
    Disabled {
        enabled: serde_bool::False
    },

    Enabled {
        #[serde(default)]
        enabled: serde_bool::True,
        key: String,
        secret: String,
    }
}

// disabled variant is matched
let config = toml::from_str::<Config>(r#"
    [feature]
    enabled = false
"#).unwrap();
assert!(matches!(config.feature, FeatureConfig::Disabled { .. }));

// if the type used `enabled: bool`, this would cause issues and require Option<_> wrappers plus
// further validation... instead an error is returned immediately regarding the missing fields
let config = toml::from_str::<Config>(r#"
    [feature]
    enabled = true
"#).unwrap_err();

// using a `#[serde(default)]` annotation makes `enabled = true` optional here
let config = toml::from_str::<Config>(r#"
    [feature]
    key = "foo"
    secret = "bar"
"#).unwrap();
assert!(matches!(config.feature, FeatureConfig::Enabled { .. }));

// extra keys can exists in the disabled case, but as usual will not be captured
let config = toml::from_str::<Config>(r#"
    [feature]
    enabled = false
    key = "foo"
    secret = "bar"
"#).unwrap();
assert!(matches!(config.feature, FeatureConfig::Disabled { .. }));

Dependencies

~110–355KB