pub trait TcatNotifiedSectionOperation<T>: TcatSectionOperation<T>
where T: Default + Debug,
{ const NOTIFY_FLAG: u32; // Provided method fn notified(_: &T, msg: u32) -> bool { ... } }
Expand description

Operation for notified parameters in section of TCAT general protocol.

Required Associated Constants§

source

const NOTIFY_FLAG: u32

Flag in message notified for any change in section.

Provided Methods§

source

fn notified(_: &T, msg: u32) -> bool

Check message to be notified or not.

Object Safety§

This trait is not object safe.

Implementors§