pub trait StaticChannel: Channel + Into<AnyStaticChannel> {
// Required method
fn degrade(self) -> AnyStaticChannel;
}
Expand description
Interface for PPI channels that cannot be configured.
Required Methods§
Sourcefn degrade(self) -> AnyStaticChannel
fn degrade(self) -> AnyStaticChannel
Convert into a type erased static channel.
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.