pub enum VolumeMount {
Short(String),
Long {
volume_type: VolumeType,
source: Option<String>,
target: String,
read_only: Option<bool>,
bind: Option<BindOptions>,
volume: Option<VolumeOptions>,
tmpfs: Option<TmpfsOptions>,
consistency: Option<String>,
},
}Expand description
A volume mount entry — either a short-form string or a long-form typed block.
Variants§
Short(String)
Short form: a source:target[:options] string.
Long
Long form: an explicitly typed mount with per-type options.
Fields
§
volume_type: VolumeTypeMount type selecting which options block applies.
§
bind: Option<BindOptions>Bind-specific options, when volume_type is bind.
§
volume: Option<VolumeOptions>Volume-specific options, when volume_type is volume.
§
tmpfs: Option<TmpfsOptions>Tmpfs-specific options, when volume_type is tmpfs.
Implementations§
Trait Implementations§
Source§impl Clone for VolumeMount
impl Clone for VolumeMount
Source§fn clone(&self) -> VolumeMount
fn clone(&self) -> VolumeMount
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VolumeMount
impl Debug for VolumeMount
Source§impl<'de> Deserialize<'de> for VolumeMount
impl<'de> Deserialize<'de> for VolumeMount
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 VolumeMount
impl RefUnwindSafe for VolumeMount
impl Send for VolumeMount
impl Sync for VolumeMount
impl Unpin for VolumeMount
impl UnsafeUnpin for VolumeMount
impl UnwindSafe for VolumeMount
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