1use crate::SharedBuffer; 2 3impl PartialEq for SharedBuffer { 4 fn eq(&self, other: &Self) -> bool { 5 **self == **other 6 } 7}