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