pub trait TryFromArray<E, const N: usize>: TryFrom<[u8; N], Error = E> { }
Expand description
A type of a trait alias, to work around https://github.com/rust-lang/rust/issues/113517.
If not for that issue, we could just use TryFrom<[u8; N]>
directly in the bounds.
Object Safety§
This trait is not object safe.