4 个版本
0.2.3 | 2021 年 3 月 4 日 |
---|---|
0.2.2 | 2020 年 11 月 29 日 |
0.2.1 |
|
0.2.0 | 2020 年 11 月 23 日 |
0.1.0 | 2020 年 11 月 22 日 |
#55 in #macros
18KB
309 行
one-of
宏,用于表示可以转换为给定类型的类型,可以是 From
或 TryInto
此包仅在 Rust 的夜间版本上工作
使用方法
use one_of::{case, one_of};
// either `u32` or `char`
let x: one_of!(u32, char) = 42.into();
assert_eq!(Some(42u32), x.into());
assert_eq!(Option::<char>::None, x.into());
// some type of integer
let x: one_of!(i8, i16, i32, i64, u8, u16, u32, u64) = 42.into();
assert_eq!(Option::<i8>::None, x.into());
assert_eq!(Option::<i16>::None, x.into());
assert_eq!(Some(42i32), x.into());
assert_eq!(Option::<i64>::None, x.into());
assert_eq!(Option::<u8>::None, x.into());
assert_eq!(Option::<u16>::None, x.into());
assert_eq!(Option::<u32>::None, x.into());
assert_eq!(Option::<u64>::None, x.into());
// case macro is the `match` keyword for `one_of` types
case!(<one_of!(bool, &str, i64)>::from("Hello, world!"),
// bool
_ => {
panic!("not bool");
};
// &str
s if s.starts_with("Hello, ") => {
assert_eq!(&s[7 ..], "world!");
}
_ => {
panic!("not other strings");
};
// i64
_ => {
panic!("not i64");
};
);
变更日志
查看 CHANGELOG.md