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.

Object Safety§

This trait is not object safe.

Implementors§