RmeFfPartiallyUpdatableParamsOperation

Trait RmeFfPartiallyUpdatableParamsOperation 

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

Operation for parameters which can be updated partially.

Required Methods§

Source

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

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§