TcatExtensionSectionNotifiedParamsOperation

Trait TcatExtensionSectionNotifiedParamsOperation 

Source
pub trait TcatExtensionSectionNotifiedParamsOperation<T: Debug> {
    // Required method
    fn cache_extension_notified_params(
        req: &FwReq,
        node: &FwNode,
        sections: &ExtensionSections,
        caps: &ExtensionCaps,
        params: &mut T,
        msg: u32,
        timeout_ms: u32,
    ) -> Result<(), Error>;
}
Expand description

Operation for parameters in which any change is notified to owner application in TCAT protocol extension.

Required Methods§

Source

fn cache_extension_notified_params( req: &FwReq, node: &FwNode, sections: &ExtensionSections, caps: &ExtensionCaps, params: &mut T, msg: u32, timeout_ms: u32, ) -> Result<(), Error>

Cache state of hardware for notified 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§