Trait TcatSectionOperation

Source
pub trait TcatSectionOperation<T>: TcatOperation + TcatSectionSerdes<T>
where T: Default + Debug,
{ // Provided method fn whole_cache( req: &FwReq, node: &FwNode, section: &Section, params: &mut T, timeout_ms: u32, ) -> Result<(), Error> { ... } }
Expand description

Operation for parameters in section of TCAT general protocol.

Provided Methods§

Source

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

Cache whole section and deserialize for 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§