-
-
Notifications
You must be signed in to change notification settings - Fork 15k
Rustdoc doesn't seem to know about target_feature #46317
Copy link
Copy link
Closed
Labels
C-feature-requestCategory: A feature request, i.e: not implemented / a PR.Category: A feature request, i.e: not implemented / a PR.T-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.Relevant to the rustdoc team, which will review and decide on the PR/issue.
Metadata
Metadata
Assignees
Labels
C-feature-requestCategory: A feature request, i.e: not implemented / a PR.Category: A feature request, i.e: not implemented / a PR.T-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.Relevant to the rustdoc team, which will review and decide on the PR/issue.
Type
Fields
Give feedbackNo fields configured for issues without a type.
I have a module declared as:
where ... are various conditions. Removing the
target_featurecondition results in rustdoc documenting the module when the other conditions are met, but I can't get rustdoc to document the module when thetarget_featurecondition is there. I'm passing the feature tocargoasSince the documentation appears exactly when the
target_featurecondition is missing, I suspect that Rustdoc doesn't know abouttarget_feature?