ps_buffer/shared/implementations/
partial_eq.rs

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