redfish_codegen/models/pump/v1_0_0/
pump_type.rs

1// Generated by redfish-codegen. Do not modify.
2
3
4#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
5pub enum PumpType {
6    /// A water or liquid pump.
7    Liquid,
8    /// A compressor.
9    Compressor,
10}
11
12#[allow(clippy::derivable_impls)]
13impl Default for PumpType {
14     fn default() -> PumpType {
15        PumpType::Liquid
16     }
17}
18
19impl crate::Metadata<'static> for PumpType {
20    const JSON_SCHEMA: &'static str = "Pump.v1_0_0.json";
21}