redfish-codegen 0.3.1

An unopinionated translation of the Redfish specification into Rust.
Documentation
// Generated by redfish-codegen. Do not modify.


#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
pub enum Expand {
    /// This value shall indicate that references in the manifest response will not be expanded.
    None,
    /// This value shall indicate that all subordinate references in the manifest response will be expanded.
    All,
    /// This value shall indicate that relevant subordinate references in the manifest response will be expanded.
    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_1_0.json";
}