Enum ebml_iterable::iterator::AllowableErrors
source · pub enum AllowableErrors {
InvalidTagIds,
HierarchyProblems,
OversizedTags,
}Expand description
Used to relax rules on how strictly a TagIterator should validate the read stream.
Variants§
InvalidTagIds
Causes the TagIterator to produce “RawTag” binary variants for any unknown tag ids rather than throwing an error.
HierarchyProblems
Causes the TagIterator to emit tags even if they appear outside of their defined parent element.
OversizedTags
Causes the TagIterator to emit tags even if they exceed the length of a parent element.