Struct tantivy_fst::automaton::Intersection
source · [−]pub struct Intersection<A, B>(_, _);
Expand description
An automaton that matches when both of its component automata match.
Trait Implementations
sourceimpl<A: Automaton, B: Automaton> Automaton for Intersection<A, B>
impl<A: Automaton, B: Automaton> Automaton for Intersection<A, B>
type State = IntersectionState<A, B>
type State = IntersectionState<A, B>
The type of the state used in the automaton.
sourcefn start(&self) -> IntersectionState<A, B>
fn start(&self) -> IntersectionState<A, B>
Returns a single start state for this automaton. Read more
sourcefn is_match(&self, state: &IntersectionState<A, B>) -> bool
fn is_match(&self, state: &IntersectionState<A, B>) -> bool
Returns true if and only if
state
is a match state.sourcefn can_match(&self, state: &IntersectionState<A, B>) -> bool
fn can_match(&self, state: &IntersectionState<A, B>) -> 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: &IntersectionState<A, B>) -> bool
fn will_always_match(&self, state: &IntersectionState<A, B>) -> bool
Returns true if and only if
state
matches and must match no matter
what steps are taken. Read moresourcefn accept(
&self,
state: &IntersectionState<A, B>,
byte: u8
) -> IntersectionState<A, B>
fn accept(
&self,
state: &IntersectionState<A, B>,
byte: u8
) -> IntersectionState<A, B>
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, B: Clone> Clone for Intersection<A, B>
impl<A: Clone, B: Clone> Clone for Intersection<A, B>
sourcefn clone(&self) -> Intersection<A, B>
fn clone(&self) -> Intersection<A, B>
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, B> RefUnwindSafe for Intersection<A, B>where
A: RefUnwindSafe,
B: RefUnwindSafe,
impl<A, B> Send for Intersection<A, B>where
A: Send,
B: Send,
impl<A, B> Sync for Intersection<A, B>where
A: Sync,
B: Sync,
impl<A, B> Unpin for Intersection<A, B>where
A: Unpin,
B: Unpin,
impl<A, B> UnwindSafe for Intersection<A, B>where
A: UnwindSafe,
B: 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