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
use crate::abci::Code;
use crate::prelude::*;

#[doc = include_str!("../doc/response-setoption.md")]
#[derive(Clone, PartialEq, Eq, Debug)]
pub struct SetOption {
    pub code: Code,
    pub log: String,
    pub info: String,
}

// =============================================================================
// Protobuf conversions
// =============================================================================

// The SetOption request has been removed after 0.34.

use tendermint_proto::v0_34::abci as pb;
use tendermint_proto::Protobuf;

impl From<SetOption> for pb::ResponseSetOption {
    fn from(message: SetOption) -> Self {
        Self {
            code: message.code.into(),
            log: message.log,
            info: message.info,
        }
    }
}

impl TryFrom<pb::ResponseSetOption> for SetOption {
    type Error = crate::Error;

    fn try_from(message: pb::ResponseSetOption) -> Result<Self, Self::Error> {
        Ok(Self {
            code: message.code.into(),
            log: message.log,
            info: message.info,
        })
    }
}

impl Protobuf<pb::ResponseSetOption> for SetOption {}