pub struct XHtmlParser<'html, 'query> {
pub selectors: QueryMultiplexer<'query>,
/* private fields */
}Fields§
§selectors: QueryMultiplexer<'query>Implementations§
Source§impl<'html, 'query: 'html> XHtmlParser<'html, 'query>
impl<'html, 'query: 'html> XHtmlParser<'html, 'query>
pub fn new(selectors: QueryMultiplexer<'query>) -> Self
pub fn with_capacity( selectors: QueryMultiplexer<'query>, capacity: usize, ) -> Self
pub fn next(&mut self, reader: &mut Reader<'html>) -> bool
pub fn matches(self) -> Store<'html, 'query>
Auto Trait Implementations§
impl<'html, 'query> Freeze for XHtmlParser<'html, 'query>
impl<'html, 'query> RefUnwindSafe for XHtmlParser<'html, 'query>
impl<'html, 'query> Send for XHtmlParser<'html, 'query>
impl<'html, 'query> Sync for XHtmlParser<'html, 'query>
impl<'html, 'query> Unpin for XHtmlParser<'html, 'query>
impl<'html, 'query> UnsafeUnpin for XHtmlParser<'html, 'query>
impl<'html, 'query> UnwindSafe for XHtmlParser<'html, 'query>
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