Trait NibiruStargateMsg

Source
pub trait NibiruStargateMsg: Message + Name {
    // Required methods
    fn into_stargate_msg(&self) -> CosmosMsg;
    fn type_url(&self) -> String;
}

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<M> NibiruStargateMsg for M
where M: Message + Name,