pub enum ExtensionKind {
Backreference(CaptureId),
VariableWidthAssertion(AssertionId),
}Expand description
Stable kinds understood by the non-regular extension lane.
Variants§
Backreference(CaptureId)
Compare input with an earlier capture.
VariableWidthAssertion(AssertionId)
Evaluate an assertion whose width cannot be established statically.
Trait Implementations§
Source§impl Clone for ExtensionKind
impl Clone for ExtensionKind
Source§fn clone(&self) -> ExtensionKind
fn clone(&self) -> ExtensionKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ExtensionKind
Source§impl Debug for ExtensionKind
impl Debug for ExtensionKind
impl Eq for ExtensionKind
Source§impl PartialEq for ExtensionKind
impl PartialEq for ExtensionKind
impl StructuralPartialEq for ExtensionKind
Auto Trait Implementations§
impl Freeze for ExtensionKind
impl RefUnwindSafe for ExtensionKind
impl Send for ExtensionKind
impl Sync for ExtensionKind
impl Unpin for ExtensionKind
impl UnsafeUnpin for ExtensionKind
impl UnwindSafe for ExtensionKind
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