pub struct ContainerWithMountedTempOpts {
pub expand: Option<bool>,
pub size: Option<isize>,
}
Fields§
§expand: Option<bool>
Replace “${VAR}” or “$VAR” in the value of path according to the current environment variables defined in the container (e.g. “/$VAR/foo”).
size: Option<isize>
Size of the temporary directory in bytes.
Trait Implementations§
Source§impl Debug for ContainerWithMountedTempOpts
impl Debug for ContainerWithMountedTempOpts
Source§impl PartialEq for ContainerWithMountedTempOpts
impl PartialEq for ContainerWithMountedTempOpts
Source§fn eq(&self, other: &ContainerWithMountedTempOpts) -> bool
fn eq(&self, other: &ContainerWithMountedTempOpts) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ContainerWithMountedTempOpts
Auto Trait Implementations§
impl Freeze for ContainerWithMountedTempOpts
impl RefUnwindSafe for ContainerWithMountedTempOpts
impl Send for ContainerWithMountedTempOpts
impl Sync for ContainerWithMountedTempOpts
impl Unpin for ContainerWithMountedTempOpts
impl UnwindSafe for ContainerWithMountedTempOpts
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