pub struct IbcTransferMsg {
pub transfer_msg: TransferMsg,
pub timeout_block_delta: Option<u64>,
pub timeout_timestamp_seconds_delta: Option<u64>,
}Fields§
§transfer_msg: TransferMsg§timeout_block_delta: Option<u64>§timeout_timestamp_seconds_delta: Option<u64>Trait Implementations§
Source§impl Clone for IbcTransferMsg
impl Clone for IbcTransferMsg
Source§fn clone(&self) -> IbcTransferMsg
fn clone(&self) -> IbcTransferMsg
Returns a duplicate 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 IbcTransferMsg
impl Debug for IbcTransferMsg
Source§impl<'de> Deserialize<'de> for IbcTransferMsg
impl<'de> Deserialize<'de> for IbcTransferMsg
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 IbcTransferMsg
impl JsonSchema for IbcTransferMsg
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 IbcTransferMsg
impl PartialEq for IbcTransferMsg
Source§impl Serialize for IbcTransferMsg
impl Serialize for IbcTransferMsg
impl StructuralPartialEq for IbcTransferMsg
Auto Trait Implementations§
impl Freeze for IbcTransferMsg
impl RefUnwindSafe for IbcTransferMsg
impl Send for IbcTransferMsg
impl Sync for IbcTransferMsg
impl Unpin for IbcTransferMsg
impl UnwindSafe for IbcTransferMsg
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