Struct markup5ever::SmallCharSet
[−]
[src]
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 Debug for SmallCharSet
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl Eq for SmallCharSet
[src]
impl PartialEq for SmallCharSet
[src]
fn eq(&self, __arg_0: &SmallCharSet) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &SmallCharSet) -> bool
[src]
This method tests for !=
.
impl Clone for SmallCharSet
[src]
fn clone(&self) -> SmallCharSet
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more