common/rust: make SectionRange Ord+Hash
This commit is contained in:
parent
146e0d594c
commit
b9b46aab5b
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ impl fmt::Display for InvalidSectionString {
|
|||
impl Error for InvalidSectionString {}
|
||||
|
||||
/// A range of sections. Always contains at least one element.
|
||||
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
pub struct SectionRange<T> {
|
||||
start: T,
|
||||
end: T,
|
||||
|
|
Loading…
Reference in a new issue