pub trait TcatMutableSectionOperation<T>: TcatOperation + TcatSectionSerdes<T>{
// Provided methods
fn whole_update(
req: &FwReq,
node: &FwNode,
section: &Section,
params: &T,
timeout_ms: u32,
) -> Result<(), Error> { ... }
fn partial_update(
req: &FwReq,
node: &FwNode,
section: &Section,
params: &T,
prev: &mut T,
timeout_ms: u32,
) -> Result<(), Error> { ... }
}
Expand description
Operation to change content in section of TCAT general protocol for parameters.
Provided Methods§
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.