[][src]Struct html5ever::smallcharset::SmallCharSet

pub struct SmallCharSet {
    pub bits: u64,
}

Represents a set of "small characters", those with Unicode scalar values less than 64.

This is stored as a bitmap, with 1 bit for each value.

Fields

bits: u64

Methods

impl SmallCharSet[src]

pub fn nonmember_prefix_len(&self, buf: &str) -> u32[src]

Count the number of bytes of characters at the beginning of buf which are not in the set.

This functionality is used in BufferQueue::pop_except_from.

Examples

let set = small_char_set!(48 49 50); // '0' '1' '2'
// `test` is 4 chars, 😁 is 4 chars, then we meet a character in the set
let test_str = "test😁01232afd";
assert_eq!(set.nonmember_prefix_len(test_str), 8);

Trait Implementations

impl Hash for SmallCharSet[src]

impl Eq for SmallCharSet[src]

impl Clone for SmallCharSet[src]

impl Copy for SmallCharSet[src]

impl Debug for SmallCharSet[src]

impl PartialEq<SmallCharSet> for SmallCharSet[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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