use crate::HashType;
use aingle_middleware_bytes::prelude::*;
pub trait HashableContent: Sized {
type HashType: HashType;
fn hash_type(&self) -> Self::HashType;
fn hashable_content(&self) -> HashableContentBytes;
}
pub enum HashableContentBytes {
Content(SerializedBytes),
Prehashed39(Vec<u8>),
}
#[macro_export]
macro_rules! impl_hashable_content {
($n: ident, $t: ident) => {
impl HashableContent for $n {
type HashType = ai_hash::hash_type::$t;
fn hash_type(&self) -> Self::HashType {
use ai_hash::PrimitiveHashType;
ai_hash::hash_type::$t::new()
}
fn hashable_content(&self) -> $crate::HashableContentBytes {
$crate::HashableContentBytes::Content(
self.try_into()
.expect("Could not serialize HashableContent"),
)
}
}
};
}