pub trait View: PartialEq + 'static { // Required method fn view(&mut self) -> impl IntoView; }
Viewable element that handles diffing.