Trait der::asn1::Sequence

source ·
pub trait Sequence<'a>: DecodeValue<'a> + EncodeValue { }
Expand description

Marker trait for ASN.1 SEQUENCEs.

This is mainly used for custom derive.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<'a, T> Sequence<'a> for Box<T>
where T: Sequence<'a>,

Available on crate feature alloc only.

Implementors§

source§

impl<'a> Sequence<'a> for SequenceRef<'a>