clientapi-pve 2026.5.24

Generated from apidoc.js. NOT an official Proxmox specification. See https://pve.proxmox.com/pve-docs/api-viewer/ for the upstream documentation.
Documentation
/*
 * Proxmox Virtual Environment API
 *
 * Generated from apidoc.js. NOT an official Proxmox specification. See https://pve.proxmox.com/pve-docs/api-viewer/ for the upstream documentation.
 *
 * The version of the OpenAPI document: 9.x
 * 
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

use serde_repr::{Serialize_repr,Deserialize_repr};
/// 
#[repr(i64)]
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize_repr, Deserialize_repr)]
pub enum PveSaferemoveStepsizeEnum {
    Variant1 = 1,
    Variant2 = 2,
    Variant4 = 4,
    Variant8 = 8,
    Variant16 = 16,
    Variant32 = 32,

}

impl std::fmt::Display for PveSaferemoveStepsizeEnum {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", match self {
            Self::Variant1 => "1",
            Self::Variant2 => "2",
            Self::Variant4 => "4",
            Self::Variant8 => "8",
            Self::Variant16 => "16",
            Self::Variant32 => "32",
        })
    }
}
impl Default for PveSaferemoveStepsizeEnum {
    fn default() -> PveSaferemoveStepsizeEnum {
        Self::Variant1
    }
}