pub trait Pins<const N: u8, const L: usize> {
const PIN_COUNT: u8;
const FLEXIO_PIN_OFFSETS: &'static [u8];
// Required method
fn configure(&mut self);
}Expand description
The pins to use for WS2812.
Required Associated Constants§
Sourceconst FLEXIO_PIN_OFFSETS: &'static [u8]
const FLEXIO_PIN_OFFSETS: &'static [u8]
The FlexIO pin offsets
Required Methods§
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.