Trait rustdds::dds::traits::TopicDescription[][src]

pub trait TopicDescription {
    fn get_participant(&self) -> Option<DomainParticipant>;
fn get_type(&self) -> TypeDesc;
fn get_name(&self) -> String; }

Trait estimate of DDS 2.2.2.3.1 TopicDescription Class

Required methods

Loading content...

Implementors

impl TopicDescription for Topic[src]

Implements some default topic interfaces functions defined in DDS spec

fn get_participant(&self) -> Option<DomainParticipant>[src]

Gets DomainParticipant if it is still alive.

fn get_type(&self) -> TypeDesc[src]

Gets type description of this Topic

fn get_name(&self) -> String[src]

Gets name of this topic

Loading content...