pub trait BoundedBridgeGrandpaConfig<I: 'static>: Config<I, BridgedChain = Self::BridgedRelayChain> {
type BridgedRelayChain: Chain<BlockNumber = RelayBlockNumber, Hash = RelayBlockHash, Hasher = RelayBlockHasher>;
}
Expand description
Convenience trait for defining BridgedChain
bounds.
Required Associated Types§
Sourcetype BridgedRelayChain: Chain<BlockNumber = RelayBlockNumber, Hash = RelayBlockHash, Hasher = RelayBlockHasher>
type BridgedRelayChain: Chain<BlockNumber = RelayBlockNumber, Hash = RelayBlockHash, Hasher = RelayBlockHasher>
Type of the bridged relay 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.