usecrate::behavior::change_for_reader_status_kind::ChangeForReaderStatusKind;/// The RTPS ChangeForReader is an association class that maintains information
/// of a CacheChange in the RTPS WriterHistoryCache as it pertains to the RTPS
/// Reader represented by the ReaderProxy.
#[derive(Debug, PartialEq, Eq)]pubstructChangeForReader{/// Indicates the status of a CacheChange relative to the RTPS Reader
/// represented by the ReaderProxy.
pubstatus: ChangeForReaderStatusKind,
/// Indicates whether the change is relevant to the RTPS Reader
/// represented by the ReaderProxy.
pubis_relevant:bool,
}