brk_store 0.3.0-beta.2

A thin wrapper around fjall
Documentation
#[derive(Debug, Clone, Copy)]
pub enum Kind {
    Recent,
    Random,
    Vec,
}

impl Kind {
    pub fn is_recent(&self) -> bool {
        matches!(*self, Self::Recent)
    }

    pub fn is_random(&self) -> bool {
        matches!(*self, Self::Random)
    }

    pub fn is_vec(&self) -> bool {
        matches!(*self, Self::Vec)
    }
}