#[non_exhaustive]pub enum EnvironmentFileSyntax {
Short,
Long,
}Expand description
Authored syntax family retained for an environment-file declaration.
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.
Short
Path-only short syntax with source-format defaults.
Long
Mapping-based syntax with separately authored options.
Trait Implementations§
Source§impl Clone for EnvironmentFileSyntax
impl Clone for EnvironmentFileSyntax
Source§fn clone(&self) -> EnvironmentFileSyntax
fn clone(&self) -> EnvironmentFileSyntax
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 EnvironmentFileSyntax
Source§impl Debug for EnvironmentFileSyntax
impl Debug for EnvironmentFileSyntax
impl Eq for EnvironmentFileSyntax
Source§impl PartialEq for EnvironmentFileSyntax
impl PartialEq for EnvironmentFileSyntax
impl StructuralPartialEq for EnvironmentFileSyntax
Auto Trait Implementations§
impl Freeze for EnvironmentFileSyntax
impl RefUnwindSafe for EnvironmentFileSyntax
impl Send for EnvironmentFileSyntax
impl Sync for EnvironmentFileSyntax
impl Unpin for EnvironmentFileSyntax
impl UnsafeUnpin for EnvironmentFileSyntax
impl UnwindSafe for EnvironmentFileSyntax
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