pub struct DefaultInputTextPlugin { /* private fields */ }
Expand description
Provides basic normalization of the input text
Trait Implementations§
source§impl Default for DefaultInputTextPlugin
impl Default for DefaultInputTextPlugin
source§fn default() -> DefaultInputTextPlugin
fn default() -> DefaultInputTextPlugin
Returns the “default value” for a type. Read more
source§impl InputTextPlugin for DefaultInputTextPlugin
impl InputTextPlugin for DefaultInputTextPlugin
source§fn set_up(
&mut self,
settings: &Value,
config: &Config,
_grammar: &Grammar<'_>,
) -> SudachiResult<()>
fn set_up( &mut self, settings: &Value, config: &Config, _grammar: &Grammar<'_>, ) -> SudachiResult<()>
Loads necessary information for the plugin
source§fn uses_chars(&self) -> bool
fn uses_chars(&self) -> bool
Whether the rewrite process uses chars
source§fn rewrite_impl<'a>(
&'a self,
buffer: &InputBuffer,
edit: InputEditor<'a>,
) -> SudachiResult<InputEditor<'a>>
fn rewrite_impl<'a>( &'a self, buffer: &InputBuffer, edit: InputEditor<'a>, ) -> SudachiResult<InputEditor<'a>>
👎Deprecated: call rewrite instead
Actual implementation of rewriting. Call
apply_rewrite
instead.source§fn rewrite(&self, input: &mut InputBuffer) -> SudachiResult<()>
fn rewrite(&self, input: &mut InputBuffer) -> SudachiResult<()>
Perform rewrites
Auto Trait Implementations§
impl Freeze for DefaultInputTextPlugin
impl RefUnwindSafe for DefaultInputTextPlugin
impl Send for DefaultInputTextPlugin
impl Sync for DefaultInputTextPlugin
impl Unpin for DefaultInputTextPlugin
impl UnwindSafe for DefaultInputTextPlugin
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> 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