Struct tantivy_fst::automaton::Intersection
source · pub struct Intersection<A, B>(/* private fields */);
Expand description
An automaton that matches when both of its component automata match.
Trait Implementations§
source§impl<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.
source§fn start(&self) -> IntersectionState<A, B>
fn start(&self) -> IntersectionState<A, B>
Returns a single start state for this automaton. Read more
source§fn 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.source§fn 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 moresource§fn 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 moresource§fn 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.source§fn 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.
source§fn 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.
source§fn 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.
source§fn 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.
Auto 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§
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