ps_buffer/implementations/
partial_ord.rs

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}