#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
pub enum Expand {
None,
All,
Relevant,
}
#[allow(clippy::derivable_impls)]
impl Default for Expand {
fn default() -> Expand {
Expand::None
}
}
impl crate::Metadata<'static> for Expand {
const JSON_SCHEMA: &'static str = "Manifest.v1_0_0.json";
}