ps_buffer/shared/implementations/
partial_ord.rs

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