useviews::IdView;useview::View;/// Makes a view wrappable in an [`IdView`].
////// [`IdView`]: ../views/struct.IdView.html
pubtraitIdentifiable: View + Sized {/// Wraps this view into an IdView with the given id.
fnwith_id(self, id:&str)->IdView<Self>{IdView::new(id,self)}}impl<T: View> Identifiable forT{}