pub trait ChannelExt {
    // Required method
    fn is_channel_name(&self) -> bool;
}
Expand description

An extension trait giving strings a function to check if they are a channel.

Required Methods§

source

fn is_channel_name(&self) -> bool

Returns true if the specified name is a channel name.

Implementations on Foreign Types§

source§

impl ChannelExt for String

source§

impl<'a> ChannelExt for &'a str

Implementors§