pub struct TmpfsOptions {
pub mode: Option<u32>,
pub size_bytes: Option<i64>,
}
Available on crate feature
v5
only.Expand description
TmpfsOptions defines options specific to mounts of type “tmpfs”.
Fields§
§mode: Option<u32>
§size_bytes: Option<i64>
Size sets the size of the tmpfs, in bytes.
This will be converted to an operating system specific value depending on the host. For example, on linux, it will be converted to use a ‘k’, ‘m’ or ‘g’ syntax. BSD, though not widely supported with docker, uses a straight byte value.
Percentages are not supported.
Trait Implementations§
Source§impl Debug for TmpfsOptions
impl Debug for TmpfsOptions
Source§impl Default for TmpfsOptions
impl Default for TmpfsOptions
Source§fn default() -> TmpfsOptions
fn default() -> TmpfsOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TmpfsOptions
impl<'de> Deserialize<'de> for TmpfsOptions
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 TmpfsOptions
impl RefUnwindSafe for TmpfsOptions
impl Send for TmpfsOptions
impl Sync for TmpfsOptions
impl Unpin for TmpfsOptions
impl UnwindSafe for TmpfsOptions
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