-
-
Notifications
You must be signed in to change notification settings - Fork 14.2k
Closed
Labels
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.
Description
pub enum RangeInclusive<Idx> {
pub Empty {
pub at: Idx,
},
pub NonEmpty {
pub start: Idx,
pub end: Idx,
},
}This is no longer valid Rust: https://doc.rust-lang.org/error-index.html#E0449
Incidentally, tuple-like enum variants seems to be free from this issue:
pub enum Component<'a> {
Prefix(PrefixComponent<'a>),
RootDir,
CurDir,
ParentDir,
Normal(&'a OsStr),
}
Metadata
Metadata
Assignees
Labels
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.