[−][src]Macro cursive_core::wrap_impl
Convenient macro to implement the ViewWrapper trait.
It defines the with_view and with_view_mut implementations,
as well as the type V declaration.
Examples
struct FooView<T: View> { view: T, } impl <T: View> ViewWrapper for FooView<T> { cursive_core::wrap_impl!(self.view: T); }