Macro impl_fill

Source
macro_rules! impl_fill {
    () => { ... };
    ($t:ty) => { ... };
    ($t:ty, $($tt:ty,)*) => { ... };
}
Expand description

Implement Fill for given type $t.

ยงSafety

All bit patterns of [u8; size_of::<$t>()] must represent values of $t.