#[non_exhaustive]pub enum ProjectProviderOptionValue {
Scalar(ComposeScalar),
Sequence(Vec<ProjectValue<ProjectProviderOptionItem>>),
}Expand description
One effective provider option value with scalar category or ordered sequence preserved.
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(ComposeScalar)
One YAML string, number, or boolean scalar.
Sequence(Vec<ProjectValue<ProjectProviderOptionItem>>)
Ordered scalar or malformed sequence items with per-item provenance.
Trait Implementations§
Source§impl Clone for ProjectProviderOptionValue
impl Clone for ProjectProviderOptionValue
Source§fn clone(&self) -> ProjectProviderOptionValue
fn clone(&self) -> ProjectProviderOptionValue
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 ProjectProviderOptionValue
impl Debug for ProjectProviderOptionValue
impl Eq for ProjectProviderOptionValue
impl StructuralPartialEq for ProjectProviderOptionValue
Auto Trait Implementations§
impl Freeze for ProjectProviderOptionValue
impl RefUnwindSafe for ProjectProviderOptionValue
impl Send for ProjectProviderOptionValue
impl Sync for ProjectProviderOptionValue
impl Unpin for ProjectProviderOptionValue
impl UnsafeUnpin for ProjectProviderOptionValue
impl UnwindSafe for ProjectProviderOptionValue
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