pub trait CheckDuplicates {
    // Required method
    fn already_contains(&self, name: &Text) -> bool;
}
Expand description

This check can be executed at compile time if the channel names are &'static str and the compiler is smart enough.

Required Methods§

source

fn already_contains(&self, name: &Text) -> bool

Check for duplicate channel names.

Implementors§