10 个稳定版本
1.5.0 | 2022年3月15日 |
---|---|
1.4.0 | 2022年3月15日 |
1.2.0 | 2022年1月31日 |
1.1.2 | 2021年11月25日 |
9 在 #postfix
47 每月下载量
在 2 个 crate 中使用(通过 baker)
6KB
101 行
Somok - postfix Result/Option 包装
用法
将以下内容添加到您的 cargo toml 中
somok = "1.0"
然后按照以下方式使用 postfix 包装
use somok::{ Somok, Either };
fn foo() -> Result<Option<Either<String, Vec<u8>>>> {
String::from("Foobar").left().some().okay()
}
lib.rs
:
Somok - postfix Result/Option 包装
用法
将以下内容添加到您的 cargo toml 中
somok = "1.0"
然后按照以下方式使用 postfix 包装
use somok::Somok;
fn foo() -> Result<Option<String>> {
String::from("Foobar").some().okay()
}