use crate::alignment::Alignment;
use crate::bytes::AlignedBytes;
use crate::slice::AlignedSlice;
impl<A: Alignment> PartialEq for AlignedBytes<A> {
#[inline]
fn eq(&self, other: &Self) -> bool {
let slice: &AlignedSlice<A> = self;
let other_slice: &AlignedSlice<A> = other;
slice.eq(other_slice)
}
}
impl<A: Alignment> Eq for AlignedBytes<A> {}
impl<A: Alignment> PartialEq<AlignedBytes<A>> for Vec<u8> {
#[inline]
fn eq(&self, other: &AlignedBytes<A>) -> bool {
other.eq(self)
}
}
impl<A: Alignment> PartialEq<Vec<u8>> for AlignedBytes<A> {
#[inline]
fn eq(&self, other: &Vec<u8>) -> bool {
let slice: &AlignedSlice<A> = self;
let other_slice: &[u8] = other;
slice.eq(other_slice)
}
}
impl<A: Alignment> PartialEq<AlignedBytes<A>> for [u8] {
#[inline]
fn eq(&self, other: &AlignedBytes<A>) -> bool {
other.eq(self)
}
}
impl<A: Alignment> PartialEq<[u8]> for AlignedBytes<A> {
#[inline]
fn eq(&self, other: &[u8]) -> bool {
let slice: &AlignedSlice<A> = self;
slice.eq(other)
}
}
impl<A: Alignment, const N: usize> PartialEq<AlignedBytes<A>> for [u8; N] {
#[inline]
fn eq(&self, other: &AlignedBytes<A>) -> bool {
other.eq(self)
}
}
impl<A: Alignment, const N: usize> PartialEq<[u8; N]> for AlignedBytes<A> {
#[inline]
fn eq(&self, other: &[u8; N]) -> bool {
let slice: &AlignedSlice<A> = self;
slice.eq(other)
}
}
impl<A: Alignment> PartialOrd for AlignedBytes<A> {
#[inline]
fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
let slice: &AlignedSlice<A> = self;
let other_slice: &AlignedSlice<A> = other;
slice.partial_cmp(other_slice)
}
}
impl<A: Alignment> Ord for AlignedBytes<A> {
#[inline]
fn cmp(&self, other: &Self) -> std::cmp::Ordering {
let slice: &AlignedSlice<A> = self;
let other_slice: &AlignedSlice<A> = other;
slice.cmp(other_slice)
}
}
impl<A: Alignment> std::hash::Hash for AlignedBytes<A> {
#[inline]
fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
let slice: &[u8] = self;
std::hash::Hash::hash(slice, state)
}
}
#[cfg(test)]
mod test {
use super::*;
use crate::alignment::*;
#[test]
fn hash_of_two_equal_structures_is_equal() {
use std::{
collections::hash_map::DefaultHasher,
hash::{Hash, Hasher},
};
let bytes1: AlignedBytes<One> = AlignedBytes::new_zeroed(4);
let bytes2: AlignedBytes<One> = AlignedBytes::new_zeroed(4);
let mut s1 = DefaultHasher::new();
bytes1.hash(&mut s1);
let h1 = s1.finish();
let mut s2 = DefaultHasher::new();
bytes2.hash(&mut s2);
let h2 = s2.finish();
assert_eq!(h1, h2);
}
}