pub trait BridgeChannel:
SealedBridgeChannel
+ PeripheralType
+ Sized
+ 'static {
type Paired: BridgeChannel;
}Expand description
One half of a hardwired bridge. Paired is the channel it is
physically connected to in the other domain (same index, paired instance).
Required Associated Types§
Sourcetype Paired: BridgeChannel
type Paired: BridgeChannel
The hardwired counterpart in the other domain. Symmetric:
<Self::Paired as BridgeChannel>::Paired is Self.
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.