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
It would be great if we could follow links in the code documentation / comments in the same way rustdoc handle it.
For example for this snippet of code:
#[async_trait::async_trait]#[cfg_attr(test, automock)]pubtraitDumpActorHandle{/// Start the creation of a dump/// Implementation: [handle_impl::DumpActorHandleImpl::create_dump]asyncfncreate_dump(&self) -> Result<DumpInfo>;/// Return the status of an already created dump/// Implementation: [handle_impl::DumpActorHandleImpl::dump_info]asyncfndump_info(&self,uid:String) -> Result<DumpInfo>;}
I would like to put my cursor on the handle_impl::DumpActorHandleImpl::create_dump and jump to the definition.
The text was updated successfully, but these errors were encountered:
That is actually already implemented, but our doc path resolution isn't fully working yet(I'm currently trying to fix that up) which is why it doesn't work in your case here. Basically we cant resolve associated items in there yet.
Hello,
It would be great if we could follow links in the code documentation / comments in the same way rustdoc handle it.
For example for this snippet of code:
I would like to put my cursor on the
handle_impl::DumpActorHandleImpl::create_dump
and jump to the definition.The text was updated successfully, but these errors were encountered: