[−][src]Enum regex_syntax::Expr
A regular expression abstract syntax tree.
An Expr
represents the abstract syntax of a regular expression.
Variants
An empty regex (which never matches any text).
A sequence of one or more literal characters to be matched.
A sequence of one or more literal bytes to be matched.
Fields of LiteralBytes
Match any character.
Match any character, excluding new line (0xA
).
Match any byte.
Match any byte, excluding new line (0xA
).
Class(CharClass)
A character class.
ClassBytes(ByteClass)
A character class with byte ranges only.
Match the start of a line or beginning of input.
Match the end of a line or end of input.
Match the beginning of input.
Match the end of input.
Match a word boundary (word character on one side and a non-word character on the other).
Match a position that is not a word boundary (word or non-word characters on both sides).
Match an ASCII word boundary.
Match a position that is not an ASCII word boundary.
A group, possibly non-capturing.
Fields of Group
A repeat operator (?
, *
, +
or {m,n}
).
Fields of Repeat
A concatenation of expressions. Must be matched one after the other.
N.B. A concat expression can only appear at the top-level or immediately inside a group expression.
An alternation of expressions. Only one must match.
N.B. An alternate expression can only appear at the top-level or immediately inside a group expression.
Methods
impl Expr
[src]
pub fn parse(s: &str) -> Result<Expr>
[src]
Parses a string in a regular expression syntax tree.
This is a convenience method for parsing an expression using the
default configuration. To tweak parsing options (such as which flags
are enabled by default), use the ExprBuilder
type.
pub fn prefixes(&self) -> Literals
[src]
Returns a set of literal prefixes extracted from this expression.
pub fn suffixes(&self) -> Literals
[src]
Returns a set of literal suffixes extracted from this expression.
pub fn is_anchored_start(&self) -> bool
[src]
Returns true if and only if the expression is required to match from the beginning of text.
pub fn has_anchored_start(&self) -> bool
[src]
Returns true if and only if the expression has at least one matchable sub-expression that must match the beginning of text.
pub fn is_anchored_end(&self) -> bool
[src]
Returns true if and only if the expression is required to match at the end of the text.
pub fn has_anchored_end(&self) -> bool
[src]
Returns true if and only if the expression has at least one matchable sub-expression that must match the beginning of text.
pub fn has_bytes(&self) -> bool
[src]
Returns true if and only if the expression contains sub-expressions that can match arbitrary bytes.
Trait Implementations
impl Clone for Expr
[src]
impl Eq for Expr
[src]
impl PartialEq<Expr> for Expr
[src]
impl Display for Expr
[src]
This implementation of Display
will write a regular expression from the
syntax tree. It does not write the original string parsed.
impl Debug for Expr
[src]
impl StructuralPartialEq for Expr
[src]
impl StructuralEq for Expr
[src]
Auto Trait Implementations
impl Send for Expr
impl Sync for Expr
impl Unpin for Expr
impl UnwindSafe for Expr
impl RefUnwindSafe for Expr
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,