devela::all

Type Alias DstValueUsize

Source
pub type DstValueUsize<DST, const CAP: usize> = DstValue<DST, DstArray<usize, CAP>>;
Available on crate feature unsafe_layout only.
Expand description

A statically allocated DST value with pointer alignment.

§Examples

let v = DstValueUsize::<[u8], 16>::new([1,2,3], |v| v);

Aliased Type§

struct DstValueUsize<DST, const CAP: usize> { /* private fields */ }