RmeFfCacheableParamsOperation

Trait RmeFfCacheableParamsOperation 

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

Operation for parameters which can be cached wholly at once.

Required Methods§

Source

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

Cache whole parameters from registers.

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§