pub trait NewZeroed {
    fn new_zeroed() -> Self;
}
Expand description

Workaround trait, since Default is only implemented to arrays up to 32 of size

Required Methods

Creates a new value with its memory set to zero

Implementations on Foreign Types

Implementors