Module html5ever::buffer_queue

source ·
Expand description

The BufferQueue struct and helper types.

This type is designed for the efficient parsing of string data, especially where many significant characters are from the ascii range 0-63. This includes, for example, important characters in xml/html parsing.

Good and predictable performance is achieved by avoiding allocation where possible (a.k.a. zero copy).

Structs

  • A queue of owned string buffers, which supports incrementally consuming characters.

Enums