pub struct XmlTagStartWrapper<'a> { /* private fields */ }
Expand description
Contains a reference to the whole buffer and the chunk header of a TagStart
Implementations§
Trait Implementations§
Source§impl<'a> Debug for XmlTagStartWrapper<'a>
impl<'a> Debug for XmlTagStartWrapper<'a>
Source§impl<'a> TagStart for XmlTagStartWrapper<'a>
impl<'a> TagStart for XmlTagStartWrapper<'a>
Source§fn get_namespace_index(&self) -> Result<u32, Error>
fn get_namespace_index(&self) -> Result<u32, Error>
Return the namespace index. If there is no namespace, it will return 0xFFFF_FFFF
Source§fn get_element_name_index(&self) -> Result<u32, Error>
fn get_element_name_index(&self) -> Result<u32, Error>
Returns the index of the tag name on the string table
Auto Trait Implementations§
impl<'a> Freeze for XmlTagStartWrapper<'a>
impl<'a> RefUnwindSafe for XmlTagStartWrapper<'a>
impl<'a> Send for XmlTagStartWrapper<'a>
impl<'a> Sync for XmlTagStartWrapper<'a>
impl<'a> Unpin for XmlTagStartWrapper<'a>
impl<'a> UnwindSafe for XmlTagStartWrapper<'a>
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