#[non_exhaustive]pub enum GeneratedTmpfs {
Scalar(GeneratedString),
List(Vec<GeneratedString>),
}Expand description
The exact service-level tmpfs form selected for generated Compose output.
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(GeneratedString)
Emit one quoted scalar item.
List(Vec<GeneratedString>)
Emit one quoted ordered list, including an explicit empty list.
Trait Implementations§
Source§impl Clone for GeneratedTmpfs
impl Clone for GeneratedTmpfs
Source§fn clone(&self) -> GeneratedTmpfs
fn clone(&self) -> GeneratedTmpfs
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 GeneratedTmpfs
impl Debug for GeneratedTmpfs
impl Eq for GeneratedTmpfs
Source§impl PartialEq for GeneratedTmpfs
impl PartialEq for GeneratedTmpfs
impl StructuralPartialEq for GeneratedTmpfs
Auto Trait Implementations§
impl Freeze for GeneratedTmpfs
impl RefUnwindSafe for GeneratedTmpfs
impl Send for GeneratedTmpfs
impl Sync for GeneratedTmpfs
impl Unpin for GeneratedTmpfs
impl UnsafeUnpin for GeneratedTmpfs
impl UnwindSafe for GeneratedTmpfs
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