1use crate::Buffer; 2 3impl PartialOrd for Buffer { 4 fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> { 5 Some(self.cmp(other)) 6 } 7}