We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
We should document which kind of changes are breaking and cannot be made to stable APIs.
E.g. changing a function from fn(i32) to fn(impl Into<i32>) can be breaking, but relaxing a <T: Ord> to <T: PartialOrd> might be fine (maybe?).
fn(i32)
fn(impl Into<i32>)
<T: Ord>
<T: PartialOrd>