pub struct VolumeMount {
pub propagation_mode: Option<String>,
pub se_linux_label: Option<String>,
pub volume: Option<String>,
pub destination: Option<String>,
pub read_only: Option<bool>,
}
Expand description
VolumeMount represents the relationship between a destination path in a task and the task group volume that should be mounted there.
This struct was generated based on the Go types of the official Nomad API.
Fields§
§propagation_mode: Option<String>
§se_linux_label: Option<String>
§volume: Option<String>
§destination: Option<String>
§read_only: Option<bool>
Trait Implementations§
Source§impl Clone for VolumeMount
impl Clone for VolumeMount
Source§fn clone(&self) -> VolumeMount
fn clone(&self) -> VolumeMount
Returns a copy of the value. Read more
1.0.0 · 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 Default for VolumeMount
impl Default for VolumeMount
Source§fn default() -> VolumeMount
fn default() -> VolumeMount
Returns the “default value” for a type. Read more
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
Source§impl PartialEq for VolumeMount
impl PartialEq for VolumeMount
Source§impl Serialize for VolumeMount
impl Serialize for VolumeMount
impl StructuralPartialEq for VolumeMount
Auto Trait Implementations§
impl Freeze for VolumeMount
impl RefUnwindSafe for VolumeMount
impl Send for VolumeMount
impl Sync for VolumeMount
impl Unpin 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