pub struct ParamUpdate {
pub param_index: u32,
pub value: ParamValue,
}Expand description
§========================================================================== Action Results
Parameter update returned by action execution
Fields§
§param_index: u32Parameter index (0-based)
value: ParamValueNew parameter value
Trait Implementations§
Source§impl Clone for ParamUpdate
impl Clone for ParamUpdate
Source§fn clone(&self) -> ParamUpdate
fn clone(&self) -> ParamUpdate
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 moreAuto Trait Implementations§
impl Freeze for ParamUpdate
impl RefUnwindSafe for ParamUpdate
impl Send for ParamUpdate
impl Sync for ParamUpdate
impl Unpin for ParamUpdate
impl UnwindSafe for ParamUpdate
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