[][src]Enum html5ever::buffer_queue::SetResult

pub enum SetResult {
    FromSet(char),
    NotFromSet(Tendril<UTF8, NonAtomic>),
}

Result from pop_except_from containing either a character from a SmallCharSet, or a string buffer of characters not from the set.

Variants

FromSet(char)

A character from the SmallCharSet.

NotFromSet(Tendril<UTF8, NonAtomic>)

A string buffer containing no characters from the SmallCharSet.

Trait Implementations

impl Debug for SetResult[src]

impl Eq for SetResult[src]

impl PartialEq<SetResult> for SetResult[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]