Expand description
This library implements a type macro for a zero-sized type that is Serde deserializable only from one specific value.
§Examples
use monostate::MustBe;
use serde::Deserialize;
#[derive(Deserialize)]
struct Example {
kind: MustBe!("success"),
code: MustBe!(200),
}
The above struct would deserialize from {"kind":"success", "code":200}
in
JSON, but would fail the deserialization if “kind” or “code” were any other
value.
This can sometimes be helpful in processing untagged enums in which the variant identification is more convoluted than what is handled by Serde’s externally tagged and internally tagged representations, for example because the variant tag has an inconsistent type or key.
use monostate::MustBe;
use serde::Deserialize;
#[derive(Deserialize)]
#[serde(untagged)]
pub enum ApiResponse {
Success {
success: MustBe!(true),
},
Error {
kind: MustBe!("error"),
message: String,
},
}
Macros§
Structs§
- Must
BeBool - Must
BeChar - Must
BeI8 - Must
BeI16 - Must
BeI32 - Must
BeI64 - Must
BeI128 - Must
BeU8 - Must
BeU16 - Must
BeU32 - Must
BeU64 - Must
BeU128