pub trait Sequence<'a>: DecodeValue<'a> + EncodeValue { }
Available on crate feature
pkcs8
only.Expand description
Marker trait for ASN.1 SEQUENCE
s.
This is mainly used for custom derive.
Object Safety§
This trait is not object safe.
Implementations on Foreign Types§
impl<'a, T> Sequence<'a> for Box<T>where
T: Sequence<'a>,
Available on crate feature
alloc
only.