pub enum EnvironmentFile {
Short(Located<String>),
Long(Box<LongEnvironmentFile>),
}Expand description
One service env_file entry with short or long syntax retained.
Variants§
Short(Located<String>)
Scalar path syntax.
Long(Box<LongEnvironmentFile>)
Mapping syntax with path options.
Implementations§
Trait Implementations§
Source§impl Clone for EnvironmentFile
impl Clone for EnvironmentFile
Source§fn clone(&self) -> EnvironmentFile
fn clone(&self) -> EnvironmentFile
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 EnvironmentFile
impl Debug for EnvironmentFile
impl Eq for EnvironmentFile
Source§impl PartialEq for EnvironmentFile
impl PartialEq for EnvironmentFile
impl StructuralPartialEq for EnvironmentFile
Auto Trait Implementations§
impl Freeze for EnvironmentFile
impl RefUnwindSafe for EnvironmentFile
impl Send for EnvironmentFile
impl Sync for EnvironmentFile
impl Unpin for EnvironmentFile
impl UnsafeUnpin for EnvironmentFile
impl UnwindSafe for EnvironmentFile
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