pub struct VariableModeUpdate {
pub action: Action,
pub id: String,
pub name: Option<String>,
pub variable_collection_id: String,
}
Expand description
VariableModeUpdate : An object that contains details about updating a VariableMode
.
Fields§
§action: Action
The action to perform for the variable mode.
id: String
The id of the variable mode to update.
name: Option<String>
The name of this variable mode.
variable_collection_id: String
The variable collection that contains the mode.
Implementations§
Trait Implementations§
Source§impl Clone for VariableModeUpdate
impl Clone for VariableModeUpdate
Source§fn clone(&self) -> VariableModeUpdate
fn clone(&self) -> VariableModeUpdate
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 VariableModeUpdate
impl Debug for VariableModeUpdate
Source§impl Default for VariableModeUpdate
impl Default for VariableModeUpdate
Source§fn default() -> VariableModeUpdate
fn default() -> VariableModeUpdate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VariableModeUpdate
impl<'de> Deserialize<'de> for VariableModeUpdate
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 VariableModeUpdate
impl PartialEq for VariableModeUpdate
Source§impl Serialize for VariableModeUpdate
impl Serialize for VariableModeUpdate
impl StructuralPartialEq for VariableModeUpdate
Auto Trait Implementations§
impl Freeze for VariableModeUpdate
impl RefUnwindSafe for VariableModeUpdate
impl Send for VariableModeUpdate
impl Sync for VariableModeUpdate
impl Unpin for VariableModeUpdate
impl UnwindSafe for VariableModeUpdate
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