sideko_rest_api 0.9.2

Rust API Client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Semantic version (0.1.0) or a release type (major, minor, patch, rc)
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone)]
#[serde(untagged)]
pub enum VersionOrBump {
    /// A release type to automatically increment
    VersionBumpEnum(crate::models::VersionBumpEnum),
    /// Semantic version following conventions from https://semver.org/
    Str(String),
}
impl Default for VersionOrBump {
    fn default() -> Self {
        VersionOrBump::Str(Default::default())
    }
}