pub fn deserialize<'de, D, T, const N: usize>(
deserialize: D,
) -> Result<Vec<[T; N]>, D::Error>where
D: Deserializer<'de>,
T: Deserialize<'de>,Expand description
Deserialize vectors of const generic arrays.
For any array up to length usize::MAX, this function will allow Serde to properly deserialize
it, provided the type T itself is deserializable.
This implementation is adapted from the Serde documentation.