pub struct Variable {
pub dataset_content_version_value: Option<DatasetContentVersionValue>,
pub double_value: Option<f64>,
pub name: String,
pub output_file_uri_value: Option<OutputFileUriValue>,
pub string_value: Option<String>,
}Expand description
An instance of a variable to be passed to the "containerAction" execution. Each variable must have a name and a value given by one of "stringValue", "datasetContentVersionValue", or "outputFileUriValue".
Fields§
§dataset_content_version_value: Option<DatasetContentVersionValue>The value of the variable as a structure that specifies a data set content version.
double_value: Option<f64>The value of the variable as a double (numeric).
name: StringThe name of the variable.
output_file_uri_value: Option<OutputFileUriValue>The value of the variable as a structure that specifies an output file URI.
string_value: Option<String>The value of the variable as a string.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Variable
impl<'de> Deserialize<'de> for Variable
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 StructuralPartialEq for Variable
Auto Trait Implementations§
impl Freeze for Variable
impl RefUnwindSafe for Variable
impl Send for Variable
impl Sync for Variable
impl Unpin for Variable
impl UnwindSafe for Variable
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