#[non_exhaustive]pub enum PipelineVariableType {
EnvVar,
File,
}
Expand description
The type of a pipeline variable.
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.
EnvVar
An environment variable.
The value of the variable is available as the value of the named environment variable.
File
A file variable.
The value of the variable is available in a file given by the value of the named environment variable.
Trait Implementations§
source§impl Clone for PipelineVariableType
impl Clone for PipelineVariableType
source§fn clone(&self) -> PipelineVariableType
fn clone(&self) -> PipelineVariableType
Returns a copy of the value. Read more
1.0.0 · 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 PipelineVariableType
impl Debug for PipelineVariableType
source§impl Default for PipelineVariableType
impl Default for PipelineVariableType
source§impl PartialEq for PipelineVariableType
impl PartialEq for PipelineVariableType
source§fn eq(&self, other: &PipelineVariableType) -> bool
fn eq(&self, other: &PipelineVariableType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for PipelineVariableType
impl Eq for PipelineVariableType
impl StructuralEq for PipelineVariableType
impl StructuralPartialEq for PipelineVariableType
Auto Trait Implementations§
impl RefUnwindSafe for PipelineVariableType
impl Send for PipelineVariableType
impl Sync for PipelineVariableType
impl Unpin for PipelineVariableType
impl UnwindSafe for PipelineVariableType
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.