pub struct TestVariableCreateUpdateParameters {
pub description: Option<String>,
pub name: Option<String>,
pub values: Vec<String>,
}Expand description
Test Variable Create or Update Parameters
Fields§
§description: Option<String>Description of the test variable
name: Option<String>Name of the test variable
values: Vec<String>List of allowed values
Implementations§
Trait Implementations§
Source§impl Clone for TestVariableCreateUpdateParameters
impl Clone for TestVariableCreateUpdateParameters
Source§fn clone(&self) -> TestVariableCreateUpdateParameters
fn clone(&self) -> TestVariableCreateUpdateParameters
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 Default for TestVariableCreateUpdateParameters
impl Default for TestVariableCreateUpdateParameters
Source§fn default() -> TestVariableCreateUpdateParameters
fn default() -> TestVariableCreateUpdateParameters
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TestVariableCreateUpdateParameters
impl<'de> Deserialize<'de> for TestVariableCreateUpdateParameters
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 PartialEq for TestVariableCreateUpdateParameters
impl PartialEq for TestVariableCreateUpdateParameters
Source§fn eq(&self, other: &TestVariableCreateUpdateParameters) -> bool
fn eq(&self, other: &TestVariableCreateUpdateParameters) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TestVariableCreateUpdateParameters
Auto Trait Implementations§
impl Freeze for TestVariableCreateUpdateParameters
impl RefUnwindSafe for TestVariableCreateUpdateParameters
impl Send for TestVariableCreateUpdateParameters
impl Sync for TestVariableCreateUpdateParameters
impl Unpin for TestVariableCreateUpdateParameters
impl UnwindSafe for TestVariableCreateUpdateParameters
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