no_way/
macros.rs

1macro_rules! unexpected_key_type_error {
2    ($expected:path, $actual:expr) => {
3        Error::WrongKeyType {
4            actual: $actual.to_string(),
5            expected: $expected.to_string(),
6        }
7    };
8}