Skip to content

0.2.1

Compare
Choose a tag to compare
@dtolnay dtolnay released this 02 Oct 17:07
· 645 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
    }