pub struct Complement<A>(/* private fields */);
Expand description

An automaton that matches exactly when the automaton it wraps does not.

Trait Implementations§

source§

impl<A: Automaton> Automaton for Complement<A>

§

type State = ComplementState<A>

The type of the state used in the automaton.
source§

fn start(&self) -> ComplementState<A>

Returns a single start state for this automaton. Read more
source§

fn is_match(&self, state: &ComplementState<A>) -> bool

Returns true if and only if state is a match state.
source§

fn can_match(&self, state: &ComplementState<A>) -> bool

Returns true if and only if state can lead to a match in zero or more steps. Read more
source§

fn will_always_match(&self, state: &ComplementState<A>) -> bool

Returns true if and only if state matches and must match no matter what steps are taken. Read more
source§

fn accept(&self, state: &ComplementState<A>, byte: u8) -> ComplementState<A>

Return the next state given state and an input.
source§

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,

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,

Returns an automaton that matches the strings matched by both this and the other automaton.
source§

fn complement(self) -> Complement<Self>where Self: Sized,

Returns an automaton that matches the strings not matched by this automaton.
source§

impl<A: Clone> Clone for Complement<A>

source§

fn clone(&self) -> Complement<A>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<A: Debug> Debug for Complement<A>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<A> RefUnwindSafe for Complement<A>where A: RefUnwindSafe,

§

impl<A> Send for Complement<A>where A: Send,

§

impl<A> Sync for Complement<A>where A: Sync,

§

impl<A> Unpin for Complement<A>where A: Unpin,

§

impl<A> UnwindSafe for Complement<A>where A: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.