Here is the situation:
struct MyDialog
{
inner: Dialog//3rdParty dialog I want to extend
}
impl MyDialog
{
/*here I need to define non-associated fn from Dialog, is there a way to forward it or I just need to copy paste?*/
/*signature of this fn:*/
pub fn around<V: IntoBoxedView>(view: V) -> Self ;
}