pub trait Sequence<'a> { }Expand description
Marker trait for ASN.1 SEQUENCEs.
This is mainly used for custom derive.
Implementations on Foreign Types§
impl<'a, Params, Key, PubKey> Sequence<'a> for PrivateKeyInfo<Params, Key, PubKey>where
Params: Choice<'a, Error = Error> + Encode,
Key: DecodeValue<'a, Error = Error> + FixedTag + 'a + EncodeValue,
PubKey: DecodeValue<'a, Error = Error> + FixedTag + 'a + BitStringLike,
impl<'a, T> Sequence<'a> for Box<T>where
T: Sequence<'a>,
Available on crate feature
alloc only.