nomad_client/models/
csi_topology.rs

1/*
2 * Nomad
3 *
4 * Nomad OpenApi specification
5 *
6 * The version of the OpenAPI document: 0.11.0
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12
13
14#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
15pub struct CsiTopology {
16    #[serde(rename = "Segments", skip_serializing_if = "Option::is_none")]
17    pub segments: Option<::std::collections::HashMap<String, String>>,
18}
19
20impl CsiTopology {
21    pub fn new() -> CsiTopology {
22        CsiTopology {
23            segments: None,
24        }
25    }
26}
27
28