Skip to main content

stellar_xdr/generated/
persisted_scp_state_v0.rs

1#[allow(unused_imports, clippy::wildcard_imports)]
2use super::*;
3
4/// PersistedScpStateV0 is an XDR Struct defined as:
5///
6/// ```text
7/// struct PersistedSCPStateV0
8/// {
9/// 	SCPEnvelope scpEnvelopes<>;
10/// 	SCPQuorumSet quorumSets<>;
11/// 	StoredTransactionSet txSets<>;
12/// };
13/// ```
14///
15#[cfg_attr(feature = "alloc", derive(Default))]
16#[derive(Clone, Debug, Hash, PartialEq, Eq, PartialOrd, Ord)]
17#[cfg_attr(feature = "serde", cfg_eval::cfg_eval)]
18#[cfg_attr(feature = "arbitrary", derive(Arbitrary))]
19#[cfg_attr(
20    all(feature = "serde", feature = "alloc"),
21    serde_with::serde_as,
22    derive(serde::Serialize, serde::Deserialize),
23    serde(rename_all = "snake_case")
24)]
25#[cfg_attr(feature = "schemars", derive(schemars::JsonSchema))]
26pub struct PersistedScpStateV0 {
27    pub scp_envelopes: VecM<ScpEnvelope>,
28    pub quorum_sets: VecM<ScpQuorumSet>,
29    pub tx_sets: VecM<StoredTransactionSet>,
30}
31
32impl ReadXdr for PersistedScpStateV0 {
33    #[cfg(feature = "std")]
34    fn read_xdr<R: Read>(r: &mut Limited<R>) -> Result<Self, Error> {
35        r.with_limited_depth(|r| {
36            Ok(Self {
37                scp_envelopes: VecM::<ScpEnvelope>::read_xdr(r)?,
38                quorum_sets: VecM::<ScpQuorumSet>::read_xdr(r)?,
39                tx_sets: VecM::<StoredTransactionSet>::read_xdr(r)?,
40            })
41        })
42    }
43}
44
45impl WriteXdr for PersistedScpStateV0 {
46    #[cfg(feature = "std")]
47    fn write_xdr<W: Write>(&self, w: &mut Limited<W>) -> Result<(), Error> {
48        w.with_limited_depth(|w| {
49            self.scp_envelopes.write_xdr(w)?;
50            self.quorum_sets.write_xdr(w)?;
51            self.tx_sets.write_xdr(w)?;
52            Ok(())
53        })
54    }
55}