Enum rustdds::dds::statusevents::DataReaderStatus[][src]

pub enum DataReaderStatus {
    SampleRejected {
        count: CountWithChange,
        last_reason: SampleRejectedStatusKind,
    },
    LivelinessChanged {
        alive_total: CountWithChange,
        not_alive_total: CountWithChange,
    },
    RequestedDeadlineMissed {
        count: CountWithChange,
    },
    RequestedIncompatibleQos {
        count: CountWithChange,
        last_policy_id: QosPolicyId,
        policies: Vec<QosPolicyCount>,
    },
    SampleLost {
        count: CountWithChange,
    },
    SubscriptionMatched {
        total: CountWithChange,
        current: CountWithChange,
    },
}

Variants

SampleRejected

Sample was rejected, because resource limits would have been exeeded.

Fields of SampleRejected

count: CountWithChangelast_reason: SampleRejectedStatusKind
LivelinessChanged

Remote Writer has become active or inactive.

Fields of LivelinessChanged

alive_total: CountWithChangenot_alive_total: CountWithChange
RequestedDeadlineMissed

Deadline requested by this DataReader was missed.

Fields of RequestedDeadlineMissed

count: CountWithChange
RequestedIncompatibleQos

This DataReader has requested a QoS policy that is incompatibel with what is offered.

Fields of RequestedIncompatibleQos

count: CountWithChangelast_policy_id: QosPolicyIdpolicies: Vec<QosPolicyCount>
SampleLost

A sample has been lost (never received). (Whtever this means?)

Fields of SampleLost

count: CountWithChange
SubscriptionMatched

The DataReader has found a DataWriter that matches the Topic and has compatible QoS, or has ceased to be matched with a DataWriter that was previously considered to be matched.

Fields of SubscriptionMatched

total: CountWithChangecurrent: CountWithChange

Trait Implementations

impl Clone for DataReaderStatus[src]

impl Debug for DataReaderStatus[src]

impl<D, DA> StatusEvented<DataReaderStatus> for DataReader<D, DA> where
    D: Keyed + DeserializeOwned,
    DA: DeserializerAdapter<D>, 
[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>,