pub struct MountPoint {
pub container_path: Option<String>,
pub read_only: Option<bool>,
pub source_volume: Option<String>,
}
Expand description
Details on a Docker volume mount point that is used in a job's container properties. This parameter maps to Volumes
in the Create a container section of the Docker Remote API and the --volume
option to docker run.
Fields§
§container_path: Option<String>
The path on the container at which to mount the host volume.
read_only: Option<bool>
If this value is true
, the container has read-only access to the volume; otherwise, the container can write to the volume. The default value is false
.
source_volume: Option<String>
The name of the volume to mount.
Trait Implementations§
Source§impl Clone for MountPoint
impl Clone for MountPoint
Source§fn clone(&self) -> MountPoint
fn clone(&self) -> MountPoint
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 MountPoint
impl Debug for MountPoint
Source§impl Default for MountPoint
impl Default for MountPoint
Source§fn default() -> MountPoint
fn default() -> MountPoint
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MountPoint
impl<'de> Deserialize<'de> for MountPoint
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 MountPoint
impl PartialEq for MountPoint
Source§impl Serialize for MountPoint
impl Serialize for MountPoint
impl StructuralPartialEq for MountPoint
Auto Trait Implementations§
impl Freeze for MountPoint
impl RefUnwindSafe for MountPoint
impl Send for MountPoint
impl Sync for MountPoint
impl Unpin for MountPoint
impl UnwindSafe for MountPoint
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