pub trait RadioExt {
    type Components;

    // Required method
    fn split(self) -> Self::Components;
}

Required Associated Types§

Required Methods§

source

fn split(self) -> Self::Components

Implementors§