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