referrerpolicy=no-referrer-when-downgrade
substrate_relay_helper::cli::bridge

Trait CliBridgeBase

Source
pub trait CliBridgeBase: Sized {
    type Source: Chain + ChainWithRuntimeVersion;
    type Target: ChainWithTransactions + ChainWithRuntimeVersion;
}
Expand description

Minimal bridge representation that can be used from the CLI. It connects a source chain to a target chain.

Required Associated Types§

Source

type Source: Chain + ChainWithRuntimeVersion

The source chain.

Source

type Target: ChainWithTransactions + ChainWithRuntimeVersion

The target chain.

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§