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
Having stack-allocated vec fields would be nice, maybe gated behind "tinyvec" feature flag.
Use case:
/// EU Tachograph G2 certificate public key#[derive(Sequence)]#[asn1(tag_mode = "IMPLICIT")]pubstructCertificatePublicKeyRaw{pubdomain_parameters:ObjectIdentifier,/// Public point is '04 xx .. xx yy .. yy'////// Maximum: 1 + 2 * 66 bytes for Nist521#[asn1(context_specific = "6",type = "OCTET STRING")]pubpublic_point:ArrayVec<[u8;133]>,}
The text was updated successfully, but these errors were encountered:
https://docs.rs/tinyvec/latest/tinyvec/struct.ArrayVec.html
Having stack-allocated vec fields would be nice, maybe gated behind
"tinyvec"
feature flag.Use case:
The text was updated successfully, but these errors were encountered: