pub struct DevRepl { /* private fields */ }
Expand description
Interactive development REPL
Implementations§
Source§impl DevRepl
impl DevRepl
Sourcepub fn set_visualizer(&mut self, visualizer: AstVisualizer)
pub fn set_visualizer(&mut self, visualizer: AstVisualizer)
Set the AST visualizer
Sourcepub fn set_validator(&mut self, validator: ParserValidator)
pub fn set_validator(&mut self, validator: ParserValidator)
Set the parser validator
Sourcepub fn set_profiler(&mut self, profiler: PerformanceProfiler)
pub fn set_profiler(&mut self, profiler: PerformanceProfiler)
Set the performance profiler
Sourcepub fn set_exporter(&mut self, exporter: GraphVizExporter)
pub fn set_exporter(&mut self, exporter: GraphVizExporter)
Set the GraphViz exporter
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DevRepl
impl RefUnwindSafe for DevRepl
impl Send for DevRepl
impl Sync for DevRepl
impl Unpin for DevRepl
impl UnwindSafe for DevRepl
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more