postcard_schema/impls/
serde_big_array_v0_5.rs

1//! Implementations of the [`Schema`] trait for the `serde-big-array` crate v0.5.
2
3use crate::{schema::NamedType, Schema};
4
5use serde_big_array_v0_5::Array;
6
7impl<T: Schema, const N: usize> Schema for Array<T, N> {
8    const SCHEMA: &'static NamedType = <[T; N] as Schema>::SCHEMA;
9}