pub struct StringReader<'a> { /* private fields */ }
Expand description

A helper struct to seek forwards and backwards in strings. Used by the tokenizer to read HTML from strings.

Trait Implementations§

source§

impl<'a> Reader for StringReader<'a>

§

type Error = Infallible

The error returned by this reader.
source§

fn read_char(&mut self) -> Result<Option<char>, Self::Error>

Return a new character from the input stream. Read more
source§

fn try_read_string( &mut self, s1: &str, case_sensitive: bool ) -> Result<bool, Self::Error>

Attempt to read an entire string at once, either case-insensitively or not. Read more
source§

fn len_of_char_in_current_encoding(&self, c: char) -> usize

Returns the number of bytes that the given character takes up in the current character encoding.

Auto Trait Implementations§

§

impl<'a> RefUnwindSafe for StringReader<'a>

§

impl<'a> Send for StringReader<'a>

§

impl<'a> Sync for StringReader<'a>

§

impl<'a> Unpin for StringReader<'a>

§

impl<'a> UnwindSafe for StringReader<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<'a, R> IntoReader<'a> for R
where R: 'a + Reader,

§

type Reader = R

The reader type into which this type should be converted.
source§

fn into_reader(self) -> <R as IntoReader<'a>>::Reader

Convert self into some sort of reader.
source§

impl<R> Position<NoopOffset> for R
where R: Reader,

source§

fn position(&self) -> NoopOffset

Returns the byte index of the current position.
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.