#[non_exhaustive]pub enum GeneratedEnvironmentFileFormat {
Raw,
}Expand description
Explicit parser mode for one generated long-syntax env_file entry.
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
Preserve raw environment-file values without Compose interpolation or quote processing.
Trait Implementations§
Source§impl Clone for GeneratedEnvironmentFileFormat
impl Clone for GeneratedEnvironmentFileFormat
Source§fn clone(&self) -> GeneratedEnvironmentFileFormat
fn clone(&self) -> GeneratedEnvironmentFileFormat
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 GeneratedEnvironmentFileFormat
impl Eq for GeneratedEnvironmentFileFormat
impl StructuralPartialEq for GeneratedEnvironmentFileFormat
Auto Trait Implementations§
impl Freeze for GeneratedEnvironmentFileFormat
impl RefUnwindSafe for GeneratedEnvironmentFileFormat
impl Send for GeneratedEnvironmentFileFormat
impl Sync for GeneratedEnvironmentFileFormat
impl Unpin for GeneratedEnvironmentFileFormat
impl UnsafeUnpin for GeneratedEnvironmentFileFormat
impl UnwindSafe for GeneratedEnvironmentFileFormat
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