#[non_exhaustive]pub enum EnvironmentFileFormat {
Raw,
}Expand description
Explicit parsing mode requested for an environment file.
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 values without interpolation or quote processing when the source supports it.
Trait Implementations§
Source§impl Clone for EnvironmentFileFormat
impl Clone for EnvironmentFileFormat
Source§fn clone(&self) -> EnvironmentFileFormat
fn clone(&self) -> EnvironmentFileFormat
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 EnvironmentFileFormat
Source§impl Debug for EnvironmentFileFormat
impl Debug for EnvironmentFileFormat
impl Eq for EnvironmentFileFormat
Source§impl PartialEq for EnvironmentFileFormat
impl PartialEq for EnvironmentFileFormat
impl StructuralPartialEq for EnvironmentFileFormat
Auto Trait Implementations§
impl Freeze for EnvironmentFileFormat
impl RefUnwindSafe for EnvironmentFileFormat
impl Send for EnvironmentFileFormat
impl Sync for EnvironmentFileFormat
impl Unpin for EnvironmentFileFormat
impl UnsafeUnpin for EnvironmentFileFormat
impl UnwindSafe for EnvironmentFileFormat
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