#[non_exhaustive]pub enum EnvironmentFileFormatKind {
Raw,
Expression,
Other,
}Expand description
Classification of an env_file.format value.
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.
Raw
Compose’s raw environment-file parser.
Expression
A value that still contains interpolation.
Other
An invalid or provider-specific value retained for diagnostics.
Trait Implementations§
Source§impl Clone for EnvironmentFileFormatKind
impl Clone for EnvironmentFileFormatKind
Source§fn clone(&self) -> EnvironmentFileFormatKind
fn clone(&self) -> EnvironmentFileFormatKind
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 moreimpl Copy for EnvironmentFileFormatKind
Source§impl Debug for EnvironmentFileFormatKind
impl Debug for EnvironmentFileFormatKind
impl Eq for EnvironmentFileFormatKind
impl StructuralPartialEq for EnvironmentFileFormatKind
Auto Trait Implementations§
impl Freeze for EnvironmentFileFormatKind
impl RefUnwindSafe for EnvironmentFileFormatKind
impl Send for EnvironmentFileFormatKind
impl Sync for EnvironmentFileFormatKind
impl Unpin for EnvironmentFileFormatKind
impl UnsafeUnpin for EnvironmentFileFormatKind
impl UnwindSafe for EnvironmentFileFormatKind
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