jit.rs icon indicating copy to clipboard operation
jit.rs copied to clipboard

Change `#[jit]` flag to `#[derive_Compile]` so it matches other automatic impls

Open TomBebbington opened this issue 9 years ago • 0 comments

So a structure like this:

#[jit]
#[derive(Copy)
pub struct Position {
    x: f64,
    y: f64
}

Can instead group them together:

#[derive(Copy, Compile)]
...

TomBebbington avatar Mar 29 '15 17:03 TomBebbington