rtps-rs 0.1.2

Real Time Publish Subscribe protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::structure::time::Timestamp;

/// This message modifies the logical source of the Submessages
/// that follow.
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct InfoTimestamp {
    /// Contains the timestamp that should be used to interpret the
    /// subsequent Submessages
    ///
    /// Present only if the InvalidateFlag is not set in the header.
    pub timestamp: Option<Timestamp>,
}