Trait px4::uorb::Message

source ·
pub unsafe trait Message {
    fn metadata() -> &'static Metadata;
}
Expand description

A message which can be published and/or subscribed to.

This trait is automatically implemented for all messages imported using #[px4_message].

Required Methods

Get the metadata of this type of message.

Implementors