mlua-periphery 1.2.4

A Rust-native implementation of lua-periphery for mlua.
1
2
3
4
5
6
use super::Gpio;
use mlua::{Error, Lua};

pub(super) fn handle(_lua: &Lua, _gpio: &Gpio, _arg: mlua::Value) -> Result<bool, Error> {
    Err(Error::RuntimeError("NIY".to_string()))
}