1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
use crate::prelude::*;
use core::marker::{Send, Sync};
use dyn_clone::DynClone;
use ibc_proto::google::protobuf::Any;
use ibc_proto::protobuf::Protobuf as ErasedProtobuf;
use crate::core::ics02_client::error::ClientError;
use crate::core::ics23_commitment::commitment::CommitmentRoot;
use crate::dynamic_typing::AsAny;
use crate::erased::ErasedSerialize;
use crate::timestamp::Timestamp;
pub trait ConsensusState:
AsAny
+ sealed::ErasedPartialEqConsensusState
+ DynClone
+ ErasedSerialize
+ ErasedProtobuf<Any, Error = ClientError>
+ core::fmt::Debug
+ Send
+ Sync
{
fn root(&self) -> &CommitmentRoot;
fn timestamp(&self) -> Timestamp;
fn into_box(self) -> Box<dyn ConsensusState>
where
Self: Sized,
{
Box::new(self)
}
}
dyn_clone::clone_trait_object!(ConsensusState);
#[cfg(feature = "serde")]
erased_serde::serialize_trait_object!(ConsensusState);
pub fn downcast_consensus_state<CS: ConsensusState>(h: &dyn ConsensusState) -> Option<&CS> {
h.as_any().downcast_ref::<CS>()
}
impl PartialEq for dyn ConsensusState {
fn eq(&self, other: &Self) -> bool {
self.eq_consensus_state(other)
}
}
impl PartialEq<&Self> for Box<dyn ConsensusState> {
fn eq(&self, other: &&Self) -> bool {
self.eq_consensus_state(other.as_ref())
}
}
mod sealed {
use super::*;
pub trait ErasedPartialEqConsensusState {
fn eq_consensus_state(&self, other: &dyn ConsensusState) -> bool;
}
impl<CS> ErasedPartialEqConsensusState for CS
where
CS: ConsensusState + PartialEq,
{
fn eq_consensus_state(&self, other: &dyn ConsensusState) -> bool {
other
.as_any()
.downcast_ref::<CS>()
.map_or(false, |h| self == h)
}
}
}