#[non_exhaustive]pub enum ProjectLabelFiles {
Scalar(ProjectValue<String>),
List(Vec<ProjectValue<String>>),
}Expand description
Effective service label_file syntax with collection and per-item merge provenance retained.
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.
Scalar(ProjectValue<String>)
One effective raw label-file path scalar.
List(Vec<ProjectValue<String>>)
One effective ordered list, including an explicit empty or reset list.
Trait Implementations§
Source§impl Clone for ProjectLabelFiles
impl Clone for ProjectLabelFiles
Source§fn clone(&self) -> ProjectLabelFiles
fn clone(&self) -> ProjectLabelFiles
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 ProjectLabelFiles
impl Debug for ProjectLabelFiles
impl Eq for ProjectLabelFiles
Source§impl PartialEq for ProjectLabelFiles
impl PartialEq for ProjectLabelFiles
impl StructuralPartialEq for ProjectLabelFiles
Auto Trait Implementations§
impl Freeze for ProjectLabelFiles
impl RefUnwindSafe for ProjectLabelFiles
impl Send for ProjectLabelFiles
impl Sync for ProjectLabelFiles
impl Unpin for ProjectLabelFiles
impl UnsafeUnpin for ProjectLabelFiles
impl UnwindSafe for ProjectLabelFiles
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