pub enum StackInputDefaultValue {
String(String),
Number(String),
Boolean(bool),
StringList(Vec<String>),
}Expand description
Stack input default value.
Variants§
String(String)
String default.
Number(String)
Number default.
Boolean(bool)
Boolean default.
StringList(Vec<String>)
String list default.
Trait Implementations§
Source§impl Clone for StackInputDefaultValue
impl Clone for StackInputDefaultValue
Source§fn clone(&self) -> StackInputDefaultValue
fn clone(&self) -> StackInputDefaultValue
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 StackInputDefaultValue
impl Debug for StackInputDefaultValue
Source§impl<'de> Deserialize<'de> for StackInputDefaultValue
impl<'de> Deserialize<'de> for StackInputDefaultValue
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for StackInputDefaultValue
Source§impl PartialEq for StackInputDefaultValue
impl PartialEq for StackInputDefaultValue
Source§fn eq(&self, other: &StackInputDefaultValue) -> bool
fn eq(&self, other: &StackInputDefaultValue) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for StackInputDefaultValue
impl Serialize for StackInputDefaultValue
impl StructuralPartialEq for StackInputDefaultValue
Auto Trait Implementations§
impl Freeze for StackInputDefaultValue
impl RefUnwindSafe for StackInputDefaultValue
impl Send for StackInputDefaultValue
impl Sync for StackInputDefaultValue
impl Unpin for StackInputDefaultValue
impl UnsafeUnpin for StackInputDefaultValue
impl UnwindSafe for StackInputDefaultValue
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.