versatile-data 0.86.1

A library for databases that has convenient datasets that group together commonly used fields and gives you the flexibility to create your own fields.
Documentation
use serde::Deserialize;

#[derive(Clone, Deserialize)]
pub struct DataOption {
    pub uuid: bool,
    pub activity: bool,
    pub term: bool,
    pub last_updated: bool,
}
impl Default for DataOption {
    fn default() -> Self {
        Self {
            uuid: true,
            activity: true,
            term: true,
            last_updated: true,
        }
    }
}