#[non_exhaustive]pub enum ProjectTmpfs {
Scalar(ProjectValue<TmpfsItem>),
List(Vec<ProjectValue<TmpfsItem>>),
}Expand description
Effective service-level tmpfs syntax with per-item merge provenance retained.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Scalar(ProjectValue<TmpfsItem>)
One effective scalar declaration.
List(Vec<ProjectValue<TmpfsItem>>)
One effective list, including an explicit empty or reset list.
Trait Implementations§
Source§impl Clone for ProjectTmpfs
impl Clone for ProjectTmpfs
Source§fn clone(&self) -> ProjectTmpfs
fn clone(&self) -> ProjectTmpfs
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProjectTmpfs
impl Debug for ProjectTmpfs
impl Eq for ProjectTmpfs
Source§impl PartialEq for ProjectTmpfs
impl PartialEq for ProjectTmpfs
impl StructuralPartialEq for ProjectTmpfs
Auto Trait Implementations§
impl Freeze for ProjectTmpfs
impl RefUnwindSafe for ProjectTmpfs
impl Send for ProjectTmpfs
impl Sync for ProjectTmpfs
impl Unpin for ProjectTmpfs
impl UnsafeUnpin for ProjectTmpfs
impl UnwindSafe for ProjectTmpfs
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