arc-handle 1.1.0

Proc macro for generating Arc-based handle wrappers for traits
Documentation
1
2
3
4
5
6
7
8
9
use arc_handle::arc_handle;

#[arc_handle]
pub trait BadTrait {
    type Output;
    fn do_thing(&self);
}

fn main() {}