Skip to content

0.2.1

Choose a tag to compare

@dtolnay dtolnay released this 02 Oct 17:07
· 724 commits to master since this release
0.2.1
838fe58
  • Add an impl allowing Box to be quoted as though it were T.

    let b = Box::new(x);
    quote! {
        original: #x,
        boxed: #b // same as original
    }