pub struct Topic { /* private fields */ }
Expand description

DDS Topic

DDS Specification, Section 2.2.1.2 Conceptual outline:

Topic objects conceptually fit between publications and subscriptions. Publications must be known in such a way that subscriptions can refer to them unambiguously. A Topic is meant to fulfill that purpose: it associates a name (unique in the > domain), a data-type, and QoS related to the data itself.

Topics can be created (or found) using a DomainParticipant.

Examples

use rustdds::dds::DomainParticipant;
use rustdds::dds::qos::QosPolicyBuilder;
use rustdds::dds::Topic;
use rustdds::dds::data_types::TopicKind;

let domain_participant = DomainParticipant::new(0).unwrap();
let qos = QosPolicyBuilder::new().build();
let topic = domain_participant
      .create_topic("some_topic".to_string(), "SomeType".to_string(), &qos, TopicKind::WithKey)
      .unwrap();

Implementations

Gets Topics TopicKind

Examples
use rustdds::dds::data_types::TopicKind;

let topic = domain_participant
    .create_topic("some_topic".to_string(), "SomeType".to_string(), &qos, TopicKind::WithKey)
    .unwrap();
assert_eq!(topic.kind(), TopicKind::WithKey);

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Implements some default topic interfaces functions defined in DDS spec

Gets DomainParticipant if it is still alive.

Gets type description of this Topic

Gets name of this topic

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.