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

pub struct ReadCondition { /* fields omitted */ }

DDS ReadCondition 2.2.2.5.8

Implementations

impl ReadCondition[src]

pub fn any() -> ReadCondition[src]

Condition reads all available samples

pub fn not_read() -> ReadCondition[src]

Condition reads samples that are not already read

pub fn sample_state_mask(&self) -> &BitFlags<SampleState>[src]

pub fn view_state_mask(&self) -> &BitFlags<ViewState>[src]

pub fn instance_state_mask(&self) -> &BitFlags<InstanceState>[src]

Trait Implementations

impl Clone for ReadCondition[src]

impl Copy for ReadCondition[src]

impl Debug for ReadCondition[src]

impl PartialEq<ReadCondition> for ReadCondition[src]

impl StructuralPartialEq for ReadCondition[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>,