[][src]Trait arr::Zeroable

pub trait Zeroable { }

Marker trait to determine if a type is auto-zeroable. This allows the initialization to simply zero out the buffer on initialization.

Implementations on Foreign Types

impl Zeroable for u8[src]

impl Zeroable for i8[src]

impl Zeroable for u16[src]

impl Zeroable for i16[src]

impl Zeroable for u32[src]

impl Zeroable for i32[src]

impl Zeroable for u64[src]

impl Zeroable for i64[src]

impl Zeroable for usize[src]

impl Zeroable for isize[src]

impl Zeroable for f32[src]

impl Zeroable for f64[src]

impl<T, const N: usize> Zeroable for [T; N] where
    T: Zeroable
[src]

Loading content...

Implementors

Loading content...