libcros 0.6.5

A Rust library that provides easy-to-use functions for interacting with a Chrome device
Documentation
1
2
3
4
5
use crate::keyval::kv;

pub fn kv_erase(key: &'static str) {
  kv().lock().unwrap().remove(key);
}