CloneableArray

Type Alias CloneableArray 

Source
pub type CloneableArray<const N: usize> = Fixed<CloneableArrayInner<N>>;

Aliased Type§

pub struct CloneableArray<const N: usize>(/* private fields */);

Implementations§

Source§

impl<const N: usize> CloneableArray<N>

Source

pub const fn expose_inner(&self) -> &[u8; N]

Source

pub fn expose_inner_mut(&mut self) -> &mut [u8; N]

Trait Implementations§

Source§

impl<const N: usize> From<[u8; N]> for CloneableArray<N>

Available on crate feature zeroize only.
Source§

fn from(arr: [u8; N]) -> Self

Converts to this type from the input type.