acme-derive 0.1.2

Derive macros for the acme-cli in support of the Scattered-Systems ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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())
    }