lb_rs/model/
signed_meta.rs

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