Enum cosmwasm_std::IbcChannelOpenMsg 
source · pub enum IbcChannelOpenMsg {
    OpenInit {
        channel: IbcChannel,
    },
    OpenTry {
        channel: IbcChannel,
        counterparty_version: String,
    },
}Expand description
The message that is passed into ibc_channel_open
Variants§
OpenInit
Fields
§
channel: IbcChannelThe ChanOpenInit step from https://github.com/cosmos/ibc/tree/master/spec/core/ics-004-channel-and-packet-semantics#channel-lifecycle-management
OpenTry
The ChanOpenTry step from https://github.com/cosmos/ibc/tree/master/spec/core/ics-004-channel-and-packet-semantics#channel-lifecycle-management
Implementations§
source§impl IbcChannelOpenMsg
 
impl IbcChannelOpenMsg
pub fn new_init(channel: IbcChannel) -> Self
pub fn new_try( channel: IbcChannel, counterparty_version: impl Into<String> ) -> Self
pub fn channel(&self) -> &IbcChannel
pub fn counterparty_version(&self) -> Option<&str>
Trait Implementations§
source§impl Clone for IbcChannelOpenMsg
 
impl Clone for IbcChannelOpenMsg
source§fn clone(&self) -> IbcChannelOpenMsg
 
fn clone(&self) -> IbcChannelOpenMsg
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl Debug for IbcChannelOpenMsg
 
impl Debug for IbcChannelOpenMsg
source§impl<'de> Deserialize<'de> for IbcChannelOpenMsg
 
impl<'de> Deserialize<'de> for IbcChannelOpenMsg
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<IbcChannelOpenMsg> for IbcChannel
 
impl From<IbcChannelOpenMsg> for IbcChannel
source§fn from(msg: IbcChannelOpenMsg) -> IbcChannel
 
fn from(msg: IbcChannelOpenMsg) -> IbcChannel
Converts to this type from the input type.
source§impl JsonSchema for IbcChannelOpenMsg
 
impl JsonSchema for IbcChannelOpenMsg
source§fn schema_name() -> String
 
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn schema_id() -> Cow<'static, str>
 
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
 
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn is_referenceable() -> bool
 
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the 
$ref keyword. Read moresource§impl PartialEq for IbcChannelOpenMsg
 
impl PartialEq for IbcChannelOpenMsg
source§fn eq(&self, other: &IbcChannelOpenMsg) -> bool
 
fn eq(&self, other: &IbcChannelOpenMsg) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Serialize for IbcChannelOpenMsg
 
impl Serialize for IbcChannelOpenMsg
impl Eq for IbcChannelOpenMsg
impl StructuralEq for IbcChannelOpenMsg
impl StructuralPartialEq for IbcChannelOpenMsg
Auto Trait Implementations§
impl RefUnwindSafe for IbcChannelOpenMsg
impl Send for IbcChannelOpenMsg
impl Sync for IbcChannelOpenMsg
impl Unpin for IbcChannelOpenMsg
impl UnwindSafe for IbcChannelOpenMsg
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more