You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#6084 added the Field::from_be_bytes and Field::from_le_bytes functions. These are generic in their inputs however the compiler doesn't seem to be able to determine the value of N from the passed array.
This is likely due to the fact that it's an impl on a primitive type, so we should check for inconsistencies between how we handle these relative to struct impls.
The text was updated successfully, but these errors were encountered:
so there might be other cases where Kind::Normal is used instead of Kind::Any (I wonder if Kind::Normal is the same as Kind::Any and only Any should remain).
#6084 added the
Field::from_be_bytes
andField::from_le_bytes
functions. These are generic in their inputs however the compiler doesn't seem to be able to determine the value ofN
from the passed array.This is likely due to the fact that it's an impl on a primitive type, so we should check for inconsistencies between how we handle these relative to struct impls.
The text was updated successfully, but these errors were encountered: