Struct rustdds::dds::no_key::DataSample[][src]

pub struct DataSample<D> { /* fields omitted */ }

DDS spec 2.2.2.5.4

Note that no_key::DataSample and with_key::DataSample are two different but similar structs.

Implementations

impl<D> DataSample<D>[src]

pub fn value(&self) -> &D[src]

pub fn into_value(self) -> D[src]

pub fn sample_info(&self) -> &SampleInfo[src]

pub fn sample_info_mut(&mut self) -> &mut SampleInfo[src]

Trait Implementations

impl<D: Debug> Debug for DataSample<D>[src]

impl<D: PartialEq> PartialEq<DataSample<D>> for DataSample<D>[src]

impl<D> StructuralPartialEq for DataSample<D>[src]

Auto Trait Implementations

impl<D> RefUnwindSafe for DataSample<D> where
    D: RefUnwindSafe
[src]

impl<D> Send for DataSample<D> where
    D: Send
[src]

impl<D> Sync for DataSample<D> where
    D: Sync
[src]

impl<D> Unpin for DataSample<D> where
    D: Unpin
[src]

impl<D> UnwindSafe for DataSample<D> where
    D: UnwindSafe
[src]

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, 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>,