[][src]Type Definition generic_vec::raw::Array

type Array<T, const N: usize> = Init<[T; N]>;

An initialized array storage

Implementations

impl<T, const N: usize> Array<T, N>[src]

pub const fn new(array: [T; N]) -> Self[src]

Create a new initialized array storage, with the given array

Trait Implementations

impl<T: Copy, const N: usize> Clone for Array<T, N>[src]

impl<T: Copy, const N: usize> Copy for Array<T, N>[src]

impl<T: Default + Copy, const N: usize> Default for Array<T, N>[src]

impl<T: Copy, const N: usize> Storage<T> for Array<T, N>[src]

impl<T: Copy, const N: usize> StorageInit<T> for Array<T, N>[src]

impl<T: Default + Copy, const N: usize> StorageWithCapacity<T> for Array<T, N>[src]