Trait RadioChannel

Source
pub trait RadioChannel<T>:
    'static
    + PartialEq
    + Eq
    + Clone
    + Hash {
    // Provided method
    fn derive_channel(self, _radio: &T) -> Vec<Self> { ... }
}

Provided Methods§

Source

fn derive_channel(self, _radio: &T) -> Vec<Self>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§