TcatExtensionSectionWholeMutableParamsOperation

Trait TcatExtensionSectionWholeMutableParamsOperation 

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

Operation for whole mutable parameters in section of TCAT protocol extension.

Required Methods§

Source

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

Update state of hardware for whole 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§