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

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

Trait estimate of DDS 2.2.2.3.1 TopicDescription Class

Required methods

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

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

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

Loading content...

Implementors

impl TopicDescription for Topic[src]

Implements some default topic interfaces functions defined in DDS spec

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

Gets DomainParticipant if it is still alive.

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

Gets type description of this Topic

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

Gets name of this topic

Loading content...