lb_rs/model/
signed_meta.rs

1use super::{crypto::ECSigned, meta::Meta};
2
3pub type SignedMeta = ECSigned<Meta>;
4
5// Impl'd to avoid comparing encrypted
6impl PartialEq for SignedMeta {
7    fn eq(&self, other: &Self) -> bool {
8        self.timestamped_value.value == other.timestamped_value.value
9            && self.public_key == other.public_key
10    }
11}