intercom-attributes 0.4.0

See 'intercom'
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14

extern crate intercom;
use intercom::*;

#[com_interface]
trait IFoo {

    fn arg_type(&self, input: u32);

    fn ret_type(&self) -> ComResult<u32>;

    fn all_type(&self, input: u32) -> ComResult<u32>;
}