pub struct JoinNumericPlugin { /* private fields */ }
Expand description
Concatenates numeric nodes as one
Trait Implementations§
source§impl Default for JoinNumericPlugin
impl Default for JoinNumericPlugin
source§fn default() -> JoinNumericPlugin
fn default() -> JoinNumericPlugin
Returns the “default value” for a type. Read more
source§impl PathRewritePlugin for JoinNumericPlugin
impl PathRewritePlugin for JoinNumericPlugin
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 rewrite(
&self,
text: &InputBuffer,
path: Vec<ResultNode>,
_lattice: &Lattice,
) -> SudachiResult<Vec<ResultNode>>
fn rewrite( &self, text: &InputBuffer, path: Vec<ResultNode>, _lattice: &Lattice, ) -> SudachiResult<Vec<ResultNode>>
Returns a rewritten path
Auto Trait Implementations§
impl Freeze for JoinNumericPlugin
impl RefUnwindSafe for JoinNumericPlugin
impl Send for JoinNumericPlugin
impl Sync for JoinNumericPlugin
impl Unpin for JoinNumericPlugin
impl UnwindSafe for JoinNumericPlugin
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