Enum regex_syntax::ast::AssertionKind[][src]

pub enum AssertionKind {
    StartLine,
    EndLine,
    StartText,
    EndText,
    WordBoundary,
    NotWordBoundary,
}

An assertion kind.

Variants

^

$

\A

\z

\b

\B

Trait Implementations

impl Clone for AssertionKind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AssertionKind
[src]

Formats the value using the given formatter. Read more

impl Eq for AssertionKind
[src]

impl PartialEq for AssertionKind
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations