pub trait EarlGreyPinmuxConfig {
const INPUT: &'static [PinmuxInsel; 57];
const OUTPUT: &'static [PinmuxOutsel; 47];
// Provided method
fn setup() { ... }
}
Expand description
Representations of Earlgrey pinmux configuration on targeted board
Required Associated Constants§
Sourceconst INPUT: &'static [PinmuxInsel; 57]
const INPUT: &'static [PinmuxInsel; 57]
Array representing configuration of pinmux input selctor
Sourceconst OUTPUT: &'static [PinmuxOutsel; 47]
const OUTPUT: &'static [PinmuxOutsel; 47]
Array representing configurations of pinmux output selecto
Provided 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.