You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I was wondering why there is 'static bound in Node<Ms: 'static> and El<Ms: 'static> types, after checking I was not able to find their need.
Can we remove 'static bound ?
why I need to do so? because when I want to create elements that contains Node<Ms> in it I have to write that bound every where (e.g. Buutton).
If we cannot remove the bound for any reason, then I think we can move it to the impl block, so any type contains Node<Ms> in it would not need to write the bound.
Or there is better way to solve this issue ?
The text was updated successfully, but these errors were encountered:
Hi, I was wondering why there is
'static
bound inNode<Ms: 'static>
andEl<Ms: 'static>
types, after checking I was not able to find their need.Can we remove
'static
bound ?why I need to do so? because when I want to create elements that contains
Node<Ms>
in it I have to write that bound every where (e.g. Buutton).If we cannot remove the bound for any reason, then I think we can move it to the impl block, so any type contains
Node<Ms>
in it would not need to write the bound.Or there is better way to solve this issue ?
The text was updated successfully, but these errors were encountered: