Struct tantivy_fst::automaton::StartsWith
source · [−]pub struct StartsWith<A>(_);
Expand description
An automaton that matches a string that begins with something that the wrapped automaton matches.
Trait Implementations
sourceimpl<A: Automaton> Automaton for StartsWith<A>
impl<A: Automaton> Automaton for StartsWith<A>
type State = StartsWithState<A>
type State = StartsWithState<A>
The type of the state used in the automaton.
sourcefn start(&self) -> StartsWithState<A>
fn start(&self) -> StartsWithState<A>
Returns a single start state for this automaton. Read more
sourcefn is_match(&self, state: &StartsWithState<A>) -> bool
fn is_match(&self, state: &StartsWithState<A>) -> bool
Returns true if and only if
state
is a match state.sourcefn can_match(&self, state: &StartsWithState<A>) -> bool
fn can_match(&self, state: &StartsWithState<A>) -> bool
Returns true if and only if
state
can lead to a match in zero or more
steps. Read moresourcefn will_always_match(&self, state: &StartsWithState<A>) -> bool
fn will_always_match(&self, state: &StartsWithState<A>) -> bool
Returns true if and only if
state
matches and must match no matter
what steps are taken. Read moresourcefn accept(&self, state: &StartsWithState<A>, byte: u8) -> StartsWithState<A>
fn accept(&self, state: &StartsWithState<A>, byte: u8) -> StartsWithState<A>
Return the next state given
state
and an input.sourcefn starts_with(self) -> StartsWith<Self>where
Self: Sized,
fn starts_with(self) -> StartsWith<Self>where
Self: Sized,
Returns an automaton that matches the strings that start with something
this automaton matches. Read more
sourcefn union<Rhs: Automaton>(self, rhs: Rhs) -> Union<Self, Rhs>where
Self: Sized,
fn union<Rhs: Automaton>(self, rhs: Rhs) -> Union<Self, Rhs>where
Self: Sized,
Returns an automaton that matches the strings matched by either this or
the other automaton. Read more
sourcefn intersection<Rhs: Automaton>(self, rhs: Rhs) -> Intersection<Self, Rhs>where
Self: Sized,
fn intersection<Rhs: Automaton>(self, rhs: Rhs) -> Intersection<Self, Rhs>where
Self: Sized,
Returns an automaton that matches the strings matched by both this and
the other automaton. Read more
sourcefn complement(self) -> Complement<Self>where
Self: Sized,
fn complement(self) -> Complement<Self>where
Self: Sized,
Returns an automaton that matches the strings not matched by this
automaton. Read more
sourceimpl<A: Clone> Clone for StartsWith<A>
impl<A: Clone> Clone for StartsWith<A>
sourcefn clone(&self) -> StartsWith<A>
fn clone(&self) -> StartsWith<A>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations
impl<A> RefUnwindSafe for StartsWith<A>where
A: RefUnwindSafe,
impl<A> Send for StartsWith<A>where
A: Send,
impl<A> Sync for StartsWith<A>where
A: Sync,
impl<A> Unpin for StartsWith<A>where
A: Unpin,
impl<A> UnwindSafe for StartsWith<A>where
A: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more