pub trait ASN1Tagged {
// Required method
fn tag(&self) -> TagValue;
}
Expand description
A trait for combinators to mark their original tags (e.g. 0x02 for INTEGER)
Can be overwritten by explicit or implicit tagging
pub trait ASN1Tagged {
// Required method
fn tag(&self) -> TagValue;
}
A trait for combinators to mark their original tags (e.g. 0x02 for INTEGER)
Can be overwritten by explicit or implicit tagging