use third::Baz; /// Foo trait pub trait Foo { /// bar method fn bar() -> (); } /// Foo implementation for Baz impl Foo for Baz { /// bar method for Baz fn bar() -> () { // } }