acme-derive 0.1.0

Derive macros for the acme-cli in support of the Scattered-Systems ecosystem
Documentation

acme-derive

Overview

Examples

extern crate acme_derive;
use acme_derive::SampleFunction;

#[derive(SampleFunction)]
pub struct Tmp;

pub fn main {
    let res: u16 = sample();
    assert_eq!(18, res.clone())
}