Crates.io | boxext_derive |
lib.rs | boxext_derive |
version | 0.1.3 |
source | src |
created_at | 2018-04-19 12:44:19.050843 |
updated_at | 2018-06-26 08:55:54.699968 |
description | Custom Derive for the `boxext::Zero` trait |
homepage | |
repository | https://github.com/glandium/boxext |
max_upload_size | |
id | 61411 |
size | 3,700 |
boxext::Zero
traitAdd #[derive(Zero)]
on your types to automatically derive the boxext::Zero
trait.
Only structs aggregating types implementing the boxext::Zero
trait are valid to use this with.
extern crate boxext;
#[macro_use]
extern crate boxext_derive;
use boxext::BoxExt;
#[derive(Zero)]
struct Foo {
a: usize,
b: f64,
c: [usize; 4],
}
// #[derive(Zero)]
// ^ the trait `boxext::Zero` is not implemented for `std::boxed::Box<Foo>`
// struct Bar {
// a: usize,
// b: Box<Foo>,
// }
fn main() {
// equivalent to Box::new(Foo { a: 0, b: 0.0, c: [0; 4] })
let buf: Box<Foo> = Box::new_zeroed();
}