Enum rustdds::DomainParticipantStatusEvent

source ·
#[non_exhaustive]
pub enum DomainParticipantStatusEvent {
Show 13 variants ParticipantDiscovered { dpd: ParticipantDescription, }, ParticipantLost { id: GuidPrefix, reason: LostReason, }, InconsistentTopic { previous_topic_data: Box<TopicData>, previous_source: GUID, discovered_topic_data: Box<TopicData>, discovery_source: GUID, }, TopicDetected { name: String, type_name: String, }, TopicLost { name: String, }, ReaderDetected { reader: EndpointDescription, }, WriterDetected { writer: EndpointDescription, }, ReaderLost { guid: GUID, reason: LostReason, }, WriterLost { guid: GUID, reason: LostReason, }, RemoteReaderMatched { local_writer: GUID, remote_reader: GUID, }, RemoteWriterMatched { local_reader: GUID, remote_writer: GUID, }, RemoteReaderQosIncompatible { local_writer: GUID, remote_reader: GUID, requested_qos: Box<QosPolicies>, offered_qos: Box<QosPolicies>, }, RemoteWriterQosIncompatible { local_reader: GUID, remote_writer: GUID, requested_qos: Box<QosPolicies>, offered_qos: Box<QosPolicies>, },
}

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

ParticipantDiscovered

§

ParticipantLost

Fields

§id: GuidPrefix
§reason: LostReason
§

InconsistentTopic

Fields

§previous_topic_data: Box<TopicData>
§previous_source: GUID
§discovered_topic_data: Box<TopicData>
§discovery_source: GUID
§

TopicDetected

Discovery detects a new topic

Fields

§name: String
§type_name: String
§

TopicLost

Topics are lost when there are no more known Readers or Writers in them.

Fields

§name: String
§

ReaderDetected

New Reader detected (or created locally). Detection happens regardless of the remote being matched or not by a local Endpoint.

Fields

§

WriterDetected

New Writer detected

Fields

§

ReaderLost

Remote Reader was lost (disconnected)

Fields

§guid: GUID
§reason: LostReason
§

WriterLost

Remote Writer was lost (disconnected)

Fields

§guid: GUID
§reason: LostReason
§

RemoteReaderMatched

Fields

§local_writer: GUID
§remote_reader: GUID
§

RemoteWriterMatched

Fields

§local_reader: GUID
§remote_writer: GUID
§

RemoteReaderQosIncompatible

Fields

§local_writer: GUID
§remote_reader: GUID
§requested_qos: Box<QosPolicies>
§offered_qos: Box<QosPolicies>
§

RemoteWriterQosIncompatible

Fields

§local_reader: GUID
§remote_writer: GUID
§requested_qos: Box<QosPolicies>
§offered_qos: Box<QosPolicies>

Trait Implementations§

source§

impl Clone for DomainParticipantStatusEvent

source§

fn clone(&self) -> DomainParticipantStatusEvent

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for DomainParticipantStatusEvent

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

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

source§

fn vzip(self) -> V