Hello!
I'm having trouble converting a vector that I know is of size 32 to an array.
Here is some sample playground code that is erroring:
It says the trait bound [T; 32]: std::convert::TryFrom<&[T]> is not satisfied
, but that doesn't seem to be right according to this documentation:
https://doc.rust-lang.org/std/convert/trait.TryFrom.html#impl-TryFrom<%26'_%20[T]>
I was following this StackOverflow post originally:
Any help will be much appreciated! Thank you!