pub struct AugmentationDetectScript {}
Expand description
Will run just script detection using whatlang.
Implementations§
Trait Implementations§
Source§impl Augmenter for AugmentationDetectScript
impl Augmenter for AugmentationDetectScript
Source§fn augment<'a>(&self, token: SegmentedToken<'a>) -> SegmentedToken<'a>
fn augment<'a>(&self, token: SegmentedToken<'a>) -> SegmentedToken<'a>
Apply augmentation function to the given token and return it.
Source§impl Clone for AugmentationDetectScript
impl Clone for AugmentationDetectScript
Source§fn clone(&self) -> AugmentationDetectScript
fn clone(&self) -> AugmentationDetectScript
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AugmentationDetectScript
impl Debug for AugmentationDetectScript
Source§impl Default for AugmentationDetectScript
impl Default for AugmentationDetectScript
Source§fn default() -> AugmentationDetectScript
fn default() -> AugmentationDetectScript
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AugmentationDetectScript
impl RefUnwindSafe for AugmentationDetectScript
impl Send for AugmentationDetectScript
impl Sync for AugmentationDetectScript
impl Unpin for AugmentationDetectScript
impl UnwindSafe for AugmentationDetectScript
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Segmenter for Twhere
T: Augmenter,
impl<T> Segmenter for Twhere
T: Augmenter,
Source§type SubdivisionIter<'a> = IntoIter<SegmentedToken<'a>>
type SubdivisionIter<'a> = IntoIter<SegmentedToken<'a>>
The iterator type returned by the
subdivide
function if it has multiple results. Read moreSource§fn subdivide<'a>(
&self,
token: SegmentedToken<'a>,
) -> UseOrSubdivide<SegmentedToken<'a>, <T as Segmenter>::SubdivisionIter<'a>> ⓘ
fn subdivide<'a>( &self, token: SegmentedToken<'a>, ) -> UseOrSubdivide<SegmentedToken<'a>, <T as Segmenter>::SubdivisionIter<'a>> ⓘ
A method that should split the given
token
into zero, one or more subtokens. Read more