//! Platform GPIO API abstraction (and wrappers).
//!
//! Provides a platform GPIO trait with wiggle and c wrappers
use PinState;
use Error;
/// Platform GPIO API abstraction.
///
/// This hides runtime implementation details to simplify implementing GPIO contexts.
/// Hopefully one day generation is improved so we don't _need_ this any more