Lines Matching refs:PartialEq
101 impl<B: ByteSlice, C: ByteSlice> PartialEq<ZbiItem<C>> for ZbiItem<B> { impl
108 impl<B: ByteSlice + PartialEq> ZbiItem<B> {
183 impl<B: ByteSliceMut + PartialEq> ZbiItem<B> {
259 #[derive(Debug, PartialEq)]
308 pub fn iter(&self) -> ZbiContainerIterator<impl ByteSlice + Default + Debug + PartialEq + '_> { in iter()
384 impl<B: ByteSliceMut + PartialEq> ZbiContainer<B> {
615 pub fn extend(&mut self, other: &ZbiContainer<impl ByteSlice + PartialEq>) -> ZbiResult<()> { in extend()
638 impl<B: ByteSlice + PartialEq + DerefMut> ZbiContainer<B> {
643 ) -> ZbiContainerIterator<impl ByteSliceMut + Debug + Default + PartialEq + '_> { in iter_mut()
660 impl<B: ByteSlice + PartialEq + Default + Debug> Iterator for ZbiContainerIterator<B> {
695 #[derive(AsBytes, Clone, Copy, Debug, Eq, PartialEq)]
1131 #[derive(Debug, PartialEq)]
1209 #[derive(Debug, PartialEq, Default)]
2040 fn check_container_made_of<B: ByteSlice + PartialEq>( in check_container_made_of()