pub struct Lookaround {
pub kind: LookaroundKind,
pub span: Span,
pub ast: Box<Ast>,
}Expand description
An alternation of regular expressions.
Fields§
§kind: LookaroundKind§span: SpanThe span of this alternation.
ast: Box<Ast>The regular expression in this group.
Implementations§
Trait Implementations§
Source§impl Clone for Lookaround
impl Clone for Lookaround
Source§fn clone(&self) -> Lookaround
fn clone(&self) -> Lookaround
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 Lookaround
impl Debug for Lookaround
Source§impl PartialEq for Lookaround
impl PartialEq for Lookaround
impl Eq for Lookaround
impl StructuralPartialEq for Lookaround
Auto Trait Implementations§
impl Freeze for Lookaround
impl RefUnwindSafe for Lookaround
impl Send for Lookaround
impl Sync for Lookaround
impl Unpin for Lookaround
impl UnsafeUnpin for Lookaround
impl UnwindSafe for Lookaround
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