pub struct IbcOutgoingMsg {
pub receiver: String,
pub channel_id: String,
pub timeout: IbcTimeout,
pub memo: Option<String>,
}Fields§
§receiver: StringThe address that should receive the NFT being sent on the receiving chain.
channel_id: StringThe local channel ID this ought to be sent away on. This contract must have a connection on this channel.
timeout: IbcTimeoutTimeout for the IBC message.
memo: Option<String>Memo to add custom string to the msg
Trait Implementations§
Source§impl Clone for IbcOutgoingMsg
impl Clone for IbcOutgoingMsg
Source§fn clone(&self) -> IbcOutgoingMsg
fn clone(&self) -> IbcOutgoingMsg
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IbcOutgoingMsg
impl Debug for IbcOutgoingMsg
Source§impl<'de> Deserialize<'de> for IbcOutgoingMsg
impl<'de> Deserialize<'de> for IbcOutgoingMsg
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 JsonSchema for IbcOutgoingMsg
impl JsonSchema for IbcOutgoingMsg
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(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &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 IbcOutgoingMsg
impl PartialEq for IbcOutgoingMsg
Source§fn eq(&self, other: &IbcOutgoingMsg) -> bool
fn eq(&self, other: &IbcOutgoingMsg) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for IbcOutgoingMsg
impl Serialize for IbcOutgoingMsg
impl StructuralPartialEq for IbcOutgoingMsg
Auto Trait Implementations§
impl Freeze for IbcOutgoingMsg
impl RefUnwindSafe for IbcOutgoingMsg
impl Send for IbcOutgoingMsg
impl Sync for IbcOutgoingMsg
impl Unpin for IbcOutgoingMsg
impl UnsafeUnpin for IbcOutgoingMsg
impl UnwindSafe for IbcOutgoingMsg
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