Struct syntect::highlighting::HighlightState
source · pub struct HighlightState {
pub path: ScopeStack,
/* private fields */
}
Expand description
Keeps a stack of scopes and styles as state between highlighting different lines.
If you are highlighting an entire file you create one of these at the start and use it all the way to the end.
Caching
One reason this is exposed is that since it implements Clone
you can actually cache these
(probably along with a ParseState
) and only re-start highlighting from the point of a
change. You could also do something fancy like only highlight a bit past the end of a user’s
screen and resume highlighting when they scroll down on large files.
Alternatively you can save space by caching only the path
field of this struct then re-create
the HighlightState
when needed by passing that stack as the initial_stack
parameter to the
new
method. This takes less space but a small amount of time to re-create the style stack.
Note: Caching is for advanced users who have tons of time to maximize performance or want to do so eventually. It is not recommended that you try caching the first time you implement highlighting.
Fields§
§path: ScopeStack
Implementations§
source§impl HighlightState
impl HighlightState
sourcepub fn new(
highlighter: &Highlighter<'_>,
initial_stack: ScopeStack
) -> HighlightState
pub fn new( highlighter: &Highlighter<'_>, initial_stack: ScopeStack ) -> HighlightState
Note that the Highlighter
is not stored; it is used to construct the initial stack
of styles.
Most of the time you’ll want to pass an empty stack as initial_stack
, but see the docs for
HighlightState
for a discussion of advanced caching use cases.
Trait Implementations§
source§impl Clone for HighlightState
impl Clone for HighlightState
source§fn clone(&self) -> HighlightState
fn clone(&self) -> HighlightState
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for HighlightState
impl Debug for HighlightState
source§impl PartialEq<HighlightState> for HighlightState
impl PartialEq<HighlightState> for HighlightState
source§fn eq(&self, other: &HighlightState) -> bool
fn eq(&self, other: &HighlightState) -> bool
self
and other
values to be equal, and is used
by ==
.impl Eq for HighlightState
impl StructuralEq for HighlightState
impl StructuralPartialEq for HighlightState
Auto Trait Implementations§
impl RefUnwindSafe for HighlightState
impl Send for HighlightState
impl Sync for HighlightState
impl Unpin for HighlightState
impl UnwindSafe for HighlightState
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.