1/// Marker for input only pins 2pub struct ForwardInputPin; 3 4/// Marker for output only pins 5pub struct ForwardOutputPin; 6 7/// Marker for input-output pins 8pub struct ForwardIoPin;