rustdds 0.11.8

Native Rust DDS implementation with RTPS
Documentation
1
2
3
4
5
6
// This is used for message parsing - validity checks.

// Having a separate trait is probably a bit overengineering.
pub trait Validity {
  fn valid(&self) -> bool;
}