redfish_codegen/models/manifest/v1_1_0/expand.rs
1// Generated by redfish-codegen. Do not modify.
2
3
4#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
5pub enum Expand {
6 /// This value shall indicate that references in the manifest response will not be expanded.
7 None,
8 /// This value shall indicate that all subordinate references in the manifest response will be expanded.
9 All,
10 /// This value shall indicate that relevant subordinate references in the manifest response will be expanded.
11 Relevant,
12}
13
14#[allow(clippy::derivable_impls)]
15impl Default for Expand {
16 fn default() -> Expand {
17 Expand::None
18 }
19}
20
21impl crate::Metadata<'static> for Expand {
22 const JSON_SCHEMA: &'static str = "Manifest.v1_1_0.json";
23}