Struct tree_sitter_highlight::HtmlRenderer[][src]

pub struct HtmlRenderer {
    pub html: Vec<u8>,
    pub line_offsets: Vec<u32>,
    // some fields omitted
}

Converts a general-purpose syntax highlighting iterator into a sequence of lines of HTML.

Fields

html: Vec<u8>line_offsets: Vec<u32>

Implementations

impl HtmlRenderer[src]

pub fn new() -> Self[src]

pub fn set_carriage_return_highlight(&mut self, highlight: Option<Highlight>)[src]

pub fn reset(&mut self)[src]

pub fn render<'a, F>(
    &mut self,
    highlighter: impl Iterator<Item = Result<HighlightEvent, Error>>,
    source: &'a [u8],
    attribute_callback: &F
) -> Result<(), Error> where
    F: Fn(Highlight) -> &'a [u8]
[src]

pub fn lines(&self) -> impl Iterator<Item = &str>[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.