pub struct ElementMeta {
pub tag_name: KString,
pub has_global_attributes: bool,
pub has_closing_tag: bool,
pub attributes: HashMap<KString, Attribute>,
pub allows_child_text: bool,
pub child_elements: HashSet<KString>,
}Fields§
§tag_name: KString§has_global_attributes: bool§has_closing_tag: bool§attributes: HashMap<KString, Attribute>§allows_child_text: bool§child_elements: HashSet<KString>Trait Implementations§
Source§impl Debug for ElementMeta
impl Debug for ElementMeta
Source§impl PartialEq for ElementMeta
impl PartialEq for ElementMeta
impl Eq for ElementMeta
Auto Trait Implementations§
impl Freeze for ElementMeta
impl RefUnwindSafe for ElementMeta
impl Send for ElementMeta
impl Sync for ElementMeta
impl Unpin for ElementMeta
impl UnwindSafe for ElementMeta
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more