0.2.1
-
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 }
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
}