pub enum ValueSource {
StringValue(String),
}
Expand description
Is the value directly defined or is it a sub-pipeline?
Variants
StringValue(String)
Trait Implementations
sourceimpl Clone for ValueSource
impl Clone for ValueSource
sourcefn clone(&self) -> ValueSource
fn clone(&self) -> ValueSource
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ValueSource
impl Debug for ValueSource
sourceimpl PartialEq<ValueSource> for ValueSource
impl PartialEq<ValueSource> for ValueSource
sourcefn eq(&self, other: &ValueSource) -> bool
fn eq(&self, other: &ValueSource) -> bool
impl StructuralPartialEq for ValueSource
Auto Trait Implementations
impl RefUnwindSafe for ValueSource
impl Send for ValueSource
impl Sync for ValueSource
impl Unpin for ValueSource
impl UnwindSafe for ValueSource
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more