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