Derives a quicker PartialOrd for types that already implement Ord.
PartialOrd
Ord
```rust // Input
struct MyStruct;
// Output impl PartialOrd for MyStruct { #[inline] fn partial_cmp(&self, other: &Self) -> Option { Some(Ord::cmp(self, other)) } } ```