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 compiler always uses the SequenceOf type, but it should use different types if its sizes are restricted. Starting with if it has a fixed size it should use an array.
The text was updated successfully, but these errors were encountered:
However, rasn::Decode requires for [T; 4] that T: Default, so IntegerAlias would need to implement Default. I'm reluctant to derive Default for every type that is used in a fixed size SEQUENCE OF, because of possible conflicts between the derived rust default value and a hypothetical asn1 DEFAULT value for the type in a SEQUENCE or SET.
Currently the compiler always uses the
SequenceOf
type, but it should use different types if its sizes are restricted. Starting with if it has a fixed size it should use an array.The text was updated successfully, but these errors were encountered: