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}