arc-handle 1.1.0

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

#[arc_handle]
pub trait BadTrait {
    fn mutate(&mut self, value: i32);
}

fn main() {}