[][src]Struct mqtt311::TopicPath

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

Fields

path: Stringwildcards: bool

Methods

impl TopicPath
[src]

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

pub fn get(&self, index: usize) -> Option<&Topic>
[src]

pub fn get_mut(&mut self, index: usize) -> Option<&mut Topic>
[src]

pub fn len(&self) -> usize
[src]

pub fn is_final(&self, index: usize) -> bool
[src]

pub fn is_multi(&self, index: usize) -> bool
[src]

pub fn from_str<T: AsRef<str>>(path: T) -> Result<TopicPath>
[src]

Trait Implementations

impl ToTopicPath for TopicPath
[src]

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

impl From<String> for TopicPath
[src]

impl IntoIterator for TopicPath
[src]

type Item = Topic

The type of the elements being iterated over.

type IntoIter = IntoIter<Topic>

Which kind of iterator are we turning this into?

impl Into<String> for TopicPath
[src]

impl Clone for TopicPath
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for TopicPath
[src]

Auto Trait Implementations

impl Send for TopicPath

impl Sync for TopicPath

Blanket Implementations

impl<T> From for T
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]