Trait TcatNotifiedSectionOperation

Source
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.

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§