derive common traits for collections::Bound

This commit is contained in:
Andrew Paseltiner 2015-03-10 13:50:35 -04:00
parent 698c1008d6
commit f58a65374b

View File

@ -175,6 +175,7 @@ mod prelude {
}
/// An endpoint of a range of keys.
#[derive(Clone, Copy, Debug, Hash, PartialEq, Eq)]
pub enum Bound<T> {
/// An inclusive bound.
Included(T),