pub struct VolumeMount {
pub volume_type: VolumeType,
pub source: String,
pub destination: PathBuf,
pub read_only: bool,
pub size_limit: Option<u64>,
}Expand description
Volume mount configuration
Fields§
§volume_type: VolumeType§source: String§destination: PathBuf§read_only: bool§size_limit: Option<u64>Implementations§
Source§impl VolumeMount
impl VolumeMount
pub fn bind( source: impl AsRef<Path>, destination: impl AsRef<Path>, ) -> VolumeMount
pub fn bind_readonly( source: impl AsRef<Path>, destination: impl AsRef<Path>, ) -> VolumeMount
pub fn tmpfs( destination: impl AsRef<Path>, size_limit: Option<u64>, ) -> VolumeMount
pub fn named(name: &str, destination: impl AsRef<Path>) -> VolumeMount
pub fn validate(&self) -> Result<(), SandboxError>
pub fn get_mount_options(&self) -> String
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 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto 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