pub enum RawTaggedField {
KnownSemantics(TaggedField),
UnknownSemantics(Vec<u5>),
}
Expand description
Tagged field which may have an unknown tag
(C-not exported) as we don’t currently support TaggedField
Variants§
KnownSemantics(TaggedField)
Parsed tagged field with known tag
UnknownSemantics(Vec<u5>)
tagged field which was not parsed due to an unknown tag or undefined field semantics
Trait Implementations§
source§impl Clone for RawTaggedField
impl Clone for RawTaggedField
source§fn clone(&self) -> RawTaggedField
fn clone(&self) -> RawTaggedField
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for RawTaggedField
impl Debug for RawTaggedField
source§impl From<TaggedField> for RawTaggedField
impl From<TaggedField> for RawTaggedField
source§fn from(tf: TaggedField) -> Self
fn from(tf: TaggedField) -> Self
Converts to this type from the input type.