MotuCommandDspUpdatableParamsOperation

Trait MotuCommandDspUpdatableParamsOperation 

Source
pub trait MotuCommandDspUpdatableParamsOperation<T> {
    // Required method
    fn update_partially(
        req: &mut FwReq,
        node: &mut FwNode,
        sequence_number: &mut u8,
        params: &mut T,
        updates: T,
        timeout_ms: u32,
    ) -> Result<(), Error>;
}
Expand description

The trait for operation to update parameters.

Required Methods§

Source

fn update_partially( req: &mut FwReq, node: &mut FwNode, sequence_number: &mut u8, params: &mut T, updates: T, timeout_ms: u32, ) -> Result<(), Error>

Update the part of parameters.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§