Enum regex_syntax::ast::AssertionKind
[−]
[src]
pub enum AssertionKind { StartLine, EndLine, StartText, EndText, WordBoundary, NotWordBoundary, }
An assertion kind.
Variants
StartLine
^
EndLine
$
StartText
\A
EndText
\z
WordBoundary
\b
NotWordBoundary
\B
Trait Implementations
impl Clone for AssertionKind
[src]
fn clone(&self) -> AssertionKind
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for AssertionKind
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more