pub enum ParamValue {
Bool(bool),
String(String),
Number(u64),
Float(f64),
List(Vec<String>),
Map(HashMap<String, String>),
KeyValueList(Vec<KeyValueParam>),
S3CopyList(Vec<S3CopyFile>),
}Variants§
Bool(bool)
String(String)
Number(u64)
Float(f64)
List(Vec<String>)
Map(HashMap<String, String>)
KeyValueList(Vec<KeyValueParam>)
S3CopyList(Vec<S3CopyFile>)
Trait Implementations§
Source§impl Clone for ParamValue
impl Clone for ParamValue
Source§fn clone(&self) -> ParamValue
fn clone(&self) -> ParamValue
Returns a duplicate 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 ParamValue
impl Debug for ParamValue
Source§impl<'de> Deserialize<'de> for ParamValue
impl<'de> Deserialize<'de> for ParamValue
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
Source§impl Display for ParamValue
impl Display for ParamValue
Source§impl From<&str> for ParamValue
impl From<&str> for ParamValue
Source§fn from(item: &str) -> ParamValue
fn from(item: &str) -> ParamValue
Converts to this type from the input type.
Source§impl From<bool> for ParamValue
impl From<bool> for ParamValue
Source§fn from(item: bool) -> ParamValue
fn from(item: bool) -> ParamValue
Converts to this type from the input type.
Source§impl From<f64> for ParamValue
impl From<f64> for ParamValue
Source§fn from(item: f64) -> ParamValue
fn from(item: f64) -> ParamValue
Converts to this type from the input type.
Source§impl From<u64> for ParamValue
impl From<u64> for ParamValue
Source§fn from(item: u64) -> ParamValue
fn from(item: u64) -> ParamValue
Converts to this type from the input type.
Source§impl PartialEq for ParamValue
impl PartialEq for ParamValue
Source§impl Serialize for ParamValue
impl Serialize for ParamValue
impl StructuralPartialEq for ParamValue
Auto Trait Implementations§
impl Freeze for ParamValue
impl RefUnwindSafe for ParamValue
impl Send for ParamValue
impl Sync for ParamValue
impl Unpin for ParamValue
impl UnwindSafe for ParamValue
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