pub enum AssertionKind {
StartLine,
EndLine,
StartText,
EndText,
WordBoundary,
NotWordBoundary,
WordBoundaryStart,
WordBoundaryEnd,
WordBoundaryStartAngle,
WordBoundaryEndAngle,
WordBoundaryStartHalf,
WordBoundaryEndHalf,
}
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 copy 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,
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 1 byte
Size for each variant:
StartLine
: 0 bytesEndLine
: 0 bytesStartText
: 0 bytesEndText
: 0 bytesWordBoundary
: 0 bytesNotWordBoundary
: 0 bytesWordBoundaryStart
: 0 bytesWordBoundaryEnd
: 0 bytesWordBoundaryStartAngle
: 0 bytesWordBoundaryEndAngle
: 0 bytesWordBoundaryStartHalf
: 0 bytesWordBoundaryEndHalf
: 0 bytes