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
When re-exporting a external trait, the implementors section of that (inlined) trait does not show external implementors of it (unless they too have been inlined).
Re-exported external types on the other hand do show external trait implementations.
// foo.rsexterncrate bar;pubuse bar::Bar;
// bar.rspubtraitBar{}pubstructBaz;// this impl does not show up in `foo::Bar`s implementors sectionimplBarforBaz{}