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