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
Currently, the bits types contain an associated byte type, which resolve to the exact size of the required byte array. This mapping between particular bit widths and bytes is done using code generation. To migrate this onto const generics, the Rust feature const_evaluatable_checked has to be implemented: rust-lang/rust#76560
The text was updated successfully, but these errors were encountered:
Currently, the bits types contain an associated byte type, which resolve to the exact size of the required byte array. This mapping between particular bit widths and bytes is done using code generation. To migrate this onto const generics, the Rust feature
const_evaluatable_checked
has to be implemented: rust-lang/rust#76560The text was updated successfully, but these errors were encountered: