pub trait IbcInterface:
AccountIdentification
+ ModuleRegistryInterface
+ ModuleIdentification
+ ModuleInterface {
// Provided method
fn ibc_client<'a>(
&'a self,
deps: Deps<'a>,
env: &'a Env,
) -> IbcClient<'_, Self> { ... }
}Expand description
Interact with other chains over IBC.
Provided 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.