Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Intralinks to impl items defined in another modules are ignored #170

Open
orium opened this issue Mar 5, 2023 · 0 comments
Open

Intralinks to impl items defined in another modules are ignored #170

orium opened this issue Mar 5, 2023 · 0 comments

Comments

@orium
Copy link
Owner

orium commented Mar 5, 2023

Currently cargo-rdme only explores modules that are mentioned in the documentation intralinks. This means that do not support mentions to Foo::a_method() in the code below, because module a_mod is not explored.

struct Foo {}

mod a_mod {
    impl Foo {
        fn a_method() {}
    }
}

We would like to support this, but we would have to explore all modules, not only the ones explicitly mentioned. For large crates that can carry a big performance impact.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant