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
Currently, for example if you have an Element, but you want to use first_child from Node, you have to either e.into::<Node>().first_child() or (e.as_ref() as &Node).first_child(). If would be great if one can just use e.first_child() without explicit type conversion.
Types defined in WebIDL can only have single inheritance, so I think this is doable via Deref chain.