Enum regex_syntax::ast::AssertionKind
source · [−]pub enum AssertionKind {
StartLine,
EndLine,
StartText,
EndText,
WordBoundary,
NotWordBoundary,
}
Expand description
An assertion kind.
Variants
StartLine
^
EndLine
$
StartText
\A
EndText
\z
WordBoundary
\b
NotWordBoundary
\B
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for AssertionKind
impl Send for AssertionKind
impl Sync for AssertionKind
impl Unpin for AssertionKind
impl UnwindSafe for AssertionKind
Blanket Implementations
Mutably borrows from an owned value. Read more