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