pub struct VolumeMountBindOptions {
pub create_mountpoint: Option<bool>,
pub non_recursive: Option<bool>,
pub propagation: Option<String>,
pub read_only_force_recursive: Option<bool>,
pub read_only_non_recursive: Option<bool>,
}
Fields§
§create_mountpoint: Option<bool>
§non_recursive: Option<bool>
§propagation: Option<String>
§read_only_force_recursive: Option<bool>
§read_only_non_recursive: Option<bool>
Trait Implementations§
Source§impl Default for VolumeMountBindOptions
impl Default for VolumeMountBindOptions
Source§fn default() -> VolumeMountBindOptions
fn default() -> VolumeMountBindOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VolumeMountBindOptions
impl<'de> Deserialize<'de> for VolumeMountBindOptions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for VolumeMountBindOptions
impl RefUnwindSafe for VolumeMountBindOptions
impl Send for VolumeMountBindOptions
impl Sync for VolumeMountBindOptions
impl Unpin for VolumeMountBindOptions
impl UnwindSafe for VolumeMountBindOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more