Struct mqtt3::TopicPath [] [src]

pub struct TopicPath {
    pub path: String,
    pub wildcards: bool,
    // some fields omitted
}

Fields

Methods

impl TopicPath
[src]

Trait Implementations

impl Debug for TopicPath
[src]

Formats the value using the given formatter.

impl Clone for TopicPath
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl IntoIterator for TopicPath
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

impl<'a> From<&'a str> for TopicPath
[src]

Performs the conversion.

impl From<String> for TopicPath
[src]

Performs the conversion.

impl Into<String> for TopicPath
[src]

Performs the conversion.

impl ToTopicPath for TopicPath
[src]