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: IbcChannel
The 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
sourceimpl 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
sourceimpl Clone for IbcChannelOpenMsg
impl Clone for IbcChannelOpenMsg
sourcefn clone(&self) -> IbcChannelOpenMsg
fn clone(&self) -> IbcChannelOpenMsg
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for IbcChannelOpenMsg
impl Debug for IbcChannelOpenMsg
sourceimpl<'de> Deserialize<'de> for IbcChannelOpenMsg
impl<'de> Deserialize<'de> for IbcChannelOpenMsg
sourcefn 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
sourceimpl From<IbcChannelOpenMsg> for IbcChannel
impl From<IbcChannelOpenMsg> for IbcChannel
sourcefn from(msg: IbcChannelOpenMsg) -> IbcChannel
fn from(msg: IbcChannelOpenMsg) -> IbcChannel
Converts to this type from the input type.
sourceimpl JsonSchema for IbcChannelOpenMsg
impl JsonSchema for IbcChannelOpenMsg
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn 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 moresourceimpl PartialEq<IbcChannelOpenMsg> for IbcChannelOpenMsg
impl PartialEq<IbcChannelOpenMsg> for IbcChannelOpenMsg
sourcefn eq(&self, other: &IbcChannelOpenMsg) -> bool
fn eq(&self, other: &IbcChannelOpenMsg) -> bool
sourceimpl 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more