expire 0.1.2

data structure for data maybe expired
Documentation
use std::sync::Arc;

use super::*;

#[test]
fn zst() {
    MaybeExpired::<()>::new();
    MaybeExpired::<Arc<u64>>::new();
    MaybeExpired::<&u64>::new();
}