1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#![doc = include_str!("../Readme.md")]

pub mod append_store;
pub mod deque_store;
pub mod item;
pub mod keymap;
pub mod keyset;
pub mod secure_item;

pub use append_store::AppendStore;
pub use deque_store::DequeStore;
pub use item::Item;
pub use iter_options::WithoutIter;
use iter_options::{IterOption, WithIter};
pub use keymap::{Keymap, KeymapBuilder};
pub use keyset::{Keyset, KeysetBuilder};

pub mod iter_options {
    pub struct WithIter;
    pub struct WithoutIter;
    pub trait IterOption {}

    impl IterOption for WithIter {}
    impl IterOption for WithoutIter {}
}