Struct html5ever::tendril::fmt::UTF8

source ·
pub struct UTF8;
Expand description

Marker type for UTF-8 text.

Trait Implementations§

source§

impl<'a> CharFormat<'a> for UTF8

§

type Iter = CharIndices<'a>

Iterator for characters and their byte indices.
source§

unsafe fn char_indices(buf: &'a [u8]) -> CharIndices<'a>

Iterate over the characters of the string and their byte indices. Read more
source§

fn encode_char<F>(ch: char, cont: F) -> Result<(), ()>where F: FnOnce(&[u8]),

Encode the character as bytes and pass them to a continuation. Read more
source§

impl Clone for UTF8

source§

fn clone(&self) -> UTF8

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for UTF8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for UTF8

source§

fn default() -> UTF8

Returns the “default value” for a type. Read more
source§

impl Format for UTF8

source§

fn validate(buf: &[u8]) -> bool

Check whether the buffer is valid for this format.
source§

fn validate_prefix(buf: &[u8]) -> bool

Check whether the buffer is valid for this format. Read more
source§

fn validate_suffix(buf: &[u8]) -> bool

Check whether the buffer is valid for this format. Read more
source§

fn validate_subseq(buf: &[u8]) -> bool

Check whether the buffer is valid for this format. Read more
source§

unsafe fn fixup(_lhs: &[u8], _rhs: &[u8]) -> Fixup

Compute any fixup needed when concatenating buffers. Read more
source§

impl SliceExt<UTF8> for str

source§

fn to_tendril(&self) -> Tendril<F, NonAtomic>

Make a Tendril from this slice.
source§

impl SliceFormat for UTF8

§

type Slice = str

source§

impl SubsetOf<UTF8> for ASCII

source§

fn revalidate_subset(x: &[u8]) -> bool

Validate the other direction of conversion; check if this buffer from the superset format conforms to the subset format. Read more
source§

impl SubsetOf<WTF8> for UTF8

source§

fn revalidate_subset(x: &[u8]) -> bool

Validate the other direction of conversion; check if this buffer from the superset format conforms to the subset format. Read more
source§

impl<Sink: TreeSink> TendrilSink<UTF8, NonAtomic> for Parser<Sink>

source§

fn process(&mut self, t: StrTendril)

Process this tendril.
source§

fn error(&mut self, desc: Cow<'static, str>)

Indicates that an error has occurred.
§

type Output = <Sink as TreeSink>::Output

What the overall result of processing is.
source§

fn finish(self) -> Self::Output

Indicates the end of the stream.
source§

fn one<T>(self, t: T) -> Self::Outputwhere Self: Sized, T: Into<Tendril<F, A>>,

Process one tendril and finish.
source§

fn from_iter<I>(self, i: I) -> Self::Outputwhere Self: Sized, I: IntoIterator, <I as IntoIterator>::Item: Into<Tendril<F, A>>,

Consume an iterator of tendrils, processing each item, then finish.
source§

impl Copy for UTF8

Auto Trait Implementations§

§

impl RefUnwindSafe for UTF8

§

impl Send for UTF8

§

impl Sync for UTF8

§

impl Unpin for UTF8

§

impl UnwindSafe for UTF8

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere 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 Twhere 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.