pub trait IntoWidget: Clone {
    // Required method
    fn into_widget(self) -> Widget;
}

Required Methods§

Implementors§