pub struct VonParser<'config> { /* private fields */ }Expand description
Parser for VON (Value-Oriented Notation).
Implementations§
Trait Implementations§
Source§impl<'config> Parser<VonLanguage> for VonParser<'config>
impl<'config> Parser<VonLanguage> for VonParser<'config>
Source§fn parse<'a, S: Source + ?Sized>(
&self,
source: &'a S,
edits: &[TextEdit],
cache: &'a mut impl ParseCache<VonLanguage>,
) -> ParseOutput<'a, VonLanguage>
fn parse<'a, S: Source + ?Sized>( &self, source: &'a S, edits: &[TextEdit], cache: &'a mut impl ParseCache<VonLanguage>, ) -> ParseOutput<'a, VonLanguage>
The core parsing entry point for converting tokens into a syntax tree. Read more
Auto Trait Implementations§
impl<'config> Freeze for VonParser<'config>
impl<'config> RefUnwindSafe for VonParser<'config>
impl<'config> Send for VonParser<'config>
impl<'config> Sync for VonParser<'config>
impl<'config> Unpin for VonParser<'config>
impl<'config> UnsafeUnpin for VonParser<'config>
impl<'config> UnwindSafe for VonParser<'config>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more