embassy-nrf

Crates

git

Versions

nrf52810

Flavors

embassy_nrf::ppi

Trait StaticChannel

Source
pub trait StaticChannel: Channel + Into<AnyStaticChannel> {
    // Required method
    fn degrade(self) -> AnyStaticChannel;
}
Expand description

Interface for PPI channels that cannot be configured.

Required Methods§

Source

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.

Implementors§