Struct ibc_proto::ibc::core::connection::v1::MsgConnectionOpenTry[][src]

pub struct MsgConnectionOpenTry {
    pub client_id: String,
    pub previous_connection_id: String,
    pub client_state: Option<Any>,
    pub counterparty: Option<Counterparty>,
    pub delay_period: u64,
    pub counterparty_versions: Vec<Version>,
    pub proof_height: Option<Height>,
    pub proof_init: Vec<u8>,
    pub proof_client: Vec<u8>,
    pub proof_consensus: Vec<u8>,
    pub consensus_height: Option<Height>,
    pub signer: String,
}

MsgConnectionOpenTry defines a msg sent by a Relayer to try to open a connection on Chain B.

Fields

client_id: Stringprevious_connection_id: String

in the case of crossing hello's, when both chains call OpenInit, we need the connection identifier of the previous connection in state INIT

client_state: Option<Any>counterparty: Option<Counterparty>delay_period: u64counterparty_versions: Vec<Version>proof_height: Option<Height>proof_init: Vec<u8>

proof of the initialization the connection on Chain A: UNITIALIZED -> INIT

proof_client: Vec<u8>

proof of client state included in message

proof_consensus: Vec<u8>

proof of client consensus state

consensus_height: Option<Height>signer: String

Trait Implementations

impl Clone for MsgConnectionOpenTry[src]

impl Debug for MsgConnectionOpenTry[src]

impl Default for MsgConnectionOpenTry[src]

impl Message for MsgConnectionOpenTry[src]

impl PartialEq<MsgConnectionOpenTry> for MsgConnectionOpenTry[src]

impl StructuralPartialEq for MsgConnectionOpenTry[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]