Struct rustdds::dds::data_types::SampleInfo[][src]

pub struct SampleInfo {
    pub sample_state: SampleState,
    pub view_state: ViewState,
    pub instance_state: InstanceState,
    pub generation_counts: NotAliveGenerationCounts,
    pub sample_rank: i32,
    pub generation_rank: i32,
    pub absolute_generation_rank: i32,
    pub source_timestamp: Option<Timestamp>,
    pub publication_handle: GUID,
}

DDS SampleInfo

Fields

sample_state: SampleStateview_state: ViewStateinstance_state: InstanceStategeneration_counts: NotAliveGenerationCountssample_rank: i32generation_rank: i32absolute_generation_rank: i32source_timestamp: Option<Timestamp>publication_handle: GUID

Implementations

impl SampleInfo[src]

pub fn new_deprecated() -> Self[src]

Trait Implementations

impl Clone for SampleInfo[src]

impl Debug for SampleInfo[src]

impl PartialEq<SampleInfo> for SampleInfo[src]

impl StructuralPartialEq for SampleInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,