Trait LexiconParametersOperation

Source
pub trait LexiconParametersOperation<T>: LexiconOperation + LexiconParametersSerdes<T> {
    // Provided method
    fn cache_whole_params(
        req: &FwReq,
        node: &FwNode,
        params: &mut T,
        timeout_ms: u32,
    ) -> Result<(), Error> { ... }
}
Expand description

Operation to cache parameters.

Provided Methods§

Source

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

Cache 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§