3 个不稳定版本
0.1.0 | 2019年4月9日 |
---|---|
0.0.2 | 2019年4月9日 |
0.0.1 | 2019年4月6日 |
254 在 #store
7KB
117 行
yocto-rust
Rust 的 Yocto 客户端。
使用方法
在您的项目中包含 yocto_client 到 Cargo.toml
,并在 crates.io 指定版本。然后,按照以下方式使用它
use yocto_client::Store;
let store = Store::new("127.0.0.1:7001").unwrap();
store.insert("key", "value").unwrap();
if let Some(value) = store.get("key").unwrap() {
assert_eq!(value, "value");
} else {
panic!("Key not found.");
}