1 2 3 4 5 6 7 8 9 10 11
use std::sync::Arc; type RawAction<V> = Option<V>; type Action<V> = Option<Arc<V>>; fn store<V>(value: impl Into<Arc<V>>) -> Action<V> { Some(value.into()) } pub(crate) mod list; pub(crate) mod map;