io-keyring 0.0.1

Set of I/O-free Rust coroutines and runtimes to manage keyring entries
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Module gathering I/O-free, composable and iterable state machines.
//!
//! Coroutines emit [`crate::Io`] requests that need to be processed by
//! [`crate::handlers`] in order to continue their progression.

mod delete;
mod read;
mod write;

#[doc(inline)]
pub use self::{delete::Delete, read::Read, write::Write};