pub trait AssignFunction<Function, Kind> {
type Assigned;
// Required method
fn assign(self) -> Self::Assigned;
}Expand description
Internal trait used to assign functions to pins
This trait is an internal implementation detail and should neither be implemented nor used outside of LPC8xx HAL. Any changes to this trait won’t be considered breaking changes.
Please refer to Function::assign for the public API that uses this
trait.