Skip to main content

geoengine_api_client/models/
data.rs

1/*
2 * Geo Engine API
3 *
4 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5 *
6 * Contact: dev@geoengine.de
7 * Generated by: https://openapi-generator.tech
8 */
9
10use crate::models;
11use serde::{Deserialize, Serialize};
12
13/// 
14#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
15pub enum Data {
16    #[serde(rename = "data")]
17    Data,
18
19}
20
21impl std::fmt::Display for Data {
22    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
23        match self {
24            Self::Data => write!(f, "data"),
25        }
26    }
27}
28
29impl Default for Data {
30    fn default() -> Data {
31        Self::Data
32    }
33}
34