pub fn ber_encode_tagged_implicit<'a, W: Write + Default + AsRef<[u8]> + 'a>(
tag: Tag,
class: Class,
obj: &'a BerObject<'_>,
) -> impl SerializeFn<W> + 'aAvailable on crate feature
serialize only.Expand description
Encode the provided object in an IMPLICIT tagged value, using the provided tag and class
Note: obj should be the object to be encapsulated, not the ContextSpecific variant.