/*
* Azure Storage Blob service
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2026-02-06
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// FileShareTokenIntent : The file share token intent types.
/// The file share token intent types.
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum FileShareTokenIntent {
#[serde(rename = "backup")]
Backup,
}
impl std::fmt::Display for FileShareTokenIntent {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match self {
Self::Backup => write!(f, "backup"),
}
}
}
impl Default for FileShareTokenIntent {
fn default() -> FileShareTokenIntent {
Self::Backup
}
}