pub enum ProjectEnvironmentFile {
Short(String),
Long(Box<ProjectLongEnvironmentFile>),
}Expand description
One effective service environment-file entry with syntax and item provenance retained.
Variants§
Short(String)
Scalar path syntax.
Long(Box<ProjectLongEnvironmentFile>)
Mapping syntax with field-level provenance.
Trait Implementations§
Source§impl Clone for ProjectEnvironmentFile
impl Clone for ProjectEnvironmentFile
Source§fn clone(&self) -> ProjectEnvironmentFile
fn clone(&self) -> ProjectEnvironmentFile
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 ProjectEnvironmentFile
impl Debug for ProjectEnvironmentFile
impl Eq for ProjectEnvironmentFile
Source§impl PartialEq for ProjectEnvironmentFile
impl PartialEq for ProjectEnvironmentFile
impl StructuralPartialEq for ProjectEnvironmentFile
Auto Trait Implementations§
impl Freeze for ProjectEnvironmentFile
impl RefUnwindSafe for ProjectEnvironmentFile
impl Send for ProjectEnvironmentFile
impl Sync for ProjectEnvironmentFile
impl Unpin for ProjectEnvironmentFile
impl UnsafeUnpin for ProjectEnvironmentFile
impl UnwindSafe for ProjectEnvironmentFile
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