pub enum AssertionKind {
StartLine,
EndLine,
StartText,
EndText,
WordBoundary,
NotWordBoundary,
WordBoundaryStart,
WordBoundaryEnd,
WordBoundaryStartAngle,
WordBoundaryEndAngle,
WordBoundaryStartHalf,
WordBoundaryEndHalf,
}
Available on (crate features
syntax-glob
or syntax-ev
or syntax-regex
) and crate feature syntax-regex
only.Expand description
An assertion kind.
Variants§
StartLine
^
EndLine
$
StartText
\A
EndText
\z
WordBoundary
\b
NotWordBoundary
\B
WordBoundaryStart
\b{start}
WordBoundaryEnd
\b{end}
WordBoundaryStartAngle
\<
(alias for \b{start}
)
WordBoundaryEndAngle
\>
(alias for \b{end}
)
WordBoundaryStartHalf
\b{start-half}
WordBoundaryEndHalf
\b{end-half}
Trait Implementations§
Source§impl Clone for AssertionKind
impl Clone for AssertionKind
Source§fn clone(&self) -> AssertionKind
fn clone(&self) -> AssertionKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AssertionKind
impl Debug for AssertionKind
Source§impl PartialEq for AssertionKind
impl PartialEq for AssertionKind
impl Eq for AssertionKind
impl StructuralPartialEq for AssertionKind
Auto Trait Implementations§
impl Freeze for AssertionKind
impl RefUnwindSafe for AssertionKind
impl Send for AssertionKind
impl Sync for AssertionKind
impl Unpin for AssertionKind
impl UnwindSafe for AssertionKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more