Skip to main content

geoengine_api_client/models/
spatial_bounds_derive.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/// SpatialBoundsDerive : Spatial bounds derivation options for the [`MockPointSource`].
14#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
15#[serde(untagged)]
16pub enum SpatialBoundsDerive {
17    #[serde(rename="derive")]
18    Derive(Box<models::SpatialBoundsDeriveDerive>),
19    #[serde(rename="bounds")]
20    Bounds(Box<models::SpatialBoundsDeriveBounds>),
21    #[serde(rename="none")]
22    None(Box<models::SpatialBoundsDeriveNone>),
23}
24
25impl Default for SpatialBoundsDerive {
26    fn default() -> Self {
27        Self::Derive(Default::default())
28    }
29}
30
31