1
2
3
4
5
6
7
8
9
10
11
use serde::{Deserialize, Serialize};

#[derive(Clone, Debug, Default, Deserialize, Serialize)]
#[serde(rename_all = "PascalCase")]
pub struct CsiMountOptions {
    pub fs_type: Option<String>,
    pub mount_flags: Option<Vec<String>>,
}