pub struct SyntaxOperator { /* private fields */ }
Expand description
Defines the different operators allowed within a regex syntax.
Implementations§
Source§impl SyntaxOperator
impl SyntaxOperator
Sourcepub const SYNTAX_OPERATOR_DOT_ANYCHAR: Self = _
pub const SYNTAX_OPERATOR_DOT_ANYCHAR: Self = _
.
Sourcepub const SYNTAX_OPERATOR_ASTERISK_ZERO_INF: Self = _
pub const SYNTAX_OPERATOR_ASTERISK_ZERO_INF: Self = _
*
Sourcepub const SYNTAX_OPERATOR_PLUS_ONE_INF: Self = _
pub const SYNTAX_OPERATOR_PLUS_ONE_INF: Self = _
+
Sourcepub const SYNTAX_OPERATOR_QMARK_ZERO_ONE: Self = _
pub const SYNTAX_OPERATOR_QMARK_ZERO_ONE: Self = _
?
Sourcepub const SYNTAX_OPERATOR_QMARK_CAPITAL_P_NAME: Self = _
pub const SYNTAX_OPERATOR_QMARK_CAPITAL_P_NAME: Self = _
?P
Sourcepub const SYNTAX_OPERATOR_BRACE_INTERVAL: Self = _
pub const SYNTAX_OPERATOR_BRACE_INTERVAL: Self = _
{lower,upper}
Sourcepub const SYNTAX_OPERATOR_ESC_BRACE_INTERVAL: Self = _
pub const SYNTAX_OPERATOR_ESC_BRACE_INTERVAL: Self = _
\{lower,upper\}
Sourcepub const SYNTAX_OPERATOR_VBAR_ALT: Self = _
pub const SYNTAX_OPERATOR_VBAR_ALT: Self = _
|
Sourcepub const SYNTAX_OPERATOR_ESC_VBAR_ALT: Self = _
pub const SYNTAX_OPERATOR_ESC_VBAR_ALT: Self = _
\|
Sourcepub const SYNTAX_OPERATOR_LPAREN_SUBEXP: Self = _
pub const SYNTAX_OPERATOR_LPAREN_SUBEXP: Self = _
(...)
Sourcepub const SYNTAX_OPERATOR_ESC_LPAREN_SUBEXP: Self = _
pub const SYNTAX_OPERATOR_ESC_LPAREN_SUBEXP: Self = _
\(...\)
Sourcepub const SYNTAX_OPERATOR_ESC_AZ_BUF_ANCHOR: Self = _
pub const SYNTAX_OPERATOR_ESC_AZ_BUF_ANCHOR: Self = _
\A, \Z, \z
Sourcepub const SYNTAX_OPERATOR_ESC_CAPITAL_G_BEGIN_ANCHOR: Self = _
pub const SYNTAX_OPERATOR_ESC_CAPITAL_G_BEGIN_ANCHOR: Self = _
\G
Sourcepub const SYNTAX_OPERATOR_DECIMAL_BACKREF: Self = _
pub const SYNTAX_OPERATOR_DECIMAL_BACKREF: Self = _
\num
Sourcepub const SYNTAX_OPERATOR_BRACKET_CC: Self = _
pub const SYNTAX_OPERATOR_BRACKET_CC: Self = _
[...]
Sourcepub const SYNTAX_OPERATOR_ESC_W_WORD: Self = _
pub const SYNTAX_OPERATOR_ESC_W_WORD: Self = _
\w, \W
Sourcepub const SYNTAX_OPERATOR_ESC_LTGT_WORD_BEGIN_END: Self = _
pub const SYNTAX_OPERATOR_ESC_LTGT_WORD_BEGIN_END: Self = _
\<. \>
Sourcepub const SYNTAX_OPERATOR_ESC_B_WORD_BOUND: Self = _
pub const SYNTAX_OPERATOR_ESC_B_WORD_BOUND: Self = _
\b, \B
Sourcepub const SYNTAX_OPERATOR_ESC_S_WHITE_SPACE: Self = _
pub const SYNTAX_OPERATOR_ESC_S_WHITE_SPACE: Self = _
\s, \S
Sourcepub const SYNTAX_OPERATOR_ESC_D_DIGIT: Self = _
pub const SYNTAX_OPERATOR_ESC_D_DIGIT: Self = _
\d, \D
Sourcepub const SYNTAX_OPERATOR_LINE_ANCHOR: Self = _
pub const SYNTAX_OPERATOR_LINE_ANCHOR: Self = _
^, $
Sourcepub const SYNTAX_OPERATOR_POSIX_BRACKET: Self = _
pub const SYNTAX_OPERATOR_POSIX_BRACKET: Self = _
[:xxxx:]
Sourcepub const SYNTAX_OPERATOR_QMARK_NON_GREEDY: Self = _
pub const SYNTAX_OPERATOR_QMARK_NON_GREEDY: Self = _
??,*?,+?,{n,m}?
Sourcepub const SYNTAX_OPERATOR_ESC_CONTROL_CHARS: Self = _
pub const SYNTAX_OPERATOR_ESC_CONTROL_CHARS: Self = _
\n,\r,\t,\a ...
Sourcepub const SYNTAX_OPERATOR_ESC_C_CONTROL: Self = _
pub const SYNTAX_OPERATOR_ESC_C_CONTROL: Self = _
\cx
Sourcepub const SYNTAX_OPERATOR_ESC_OCTAL3: Self = _
pub const SYNTAX_OPERATOR_ESC_OCTAL3: Self = _
\OOO
Sourcepub const SYNTAX_OPERATOR_ESC_X_HEX2: Self = _
pub const SYNTAX_OPERATOR_ESC_X_HEX2: Self = _
\xHH
Sourcepub const SYNTAX_OPERATOR_ESC_X_BRACE_HEX8: Self = _
pub const SYNTAX_OPERATOR_ESC_X_BRACE_HEX8: Self = _
\x{7HHHHHHH}
Sourcepub const SYNTAX_OPERATOR_VARIABLE_META_CHARACTERS: Self = _
pub const SYNTAX_OPERATOR_VARIABLE_META_CHARACTERS: Self = _
Variable meta characters
Sourcepub const SYNTAX_OPERATOR_ESC_CAPITAL_Q_QUOTE: Self = _
pub const SYNTAX_OPERATOR_ESC_CAPITAL_Q_QUOTE: Self = _
\Q...\E
Sourcepub const SYNTAX_OPERATOR_QMARK_GROUP_EFFECT: Self = _
pub const SYNTAX_OPERATOR_QMARK_GROUP_EFFECT: Self = _
(?...)
Sourcepub const SYNTAX_OPERATOR_OPTION_PERL: Self = _
pub const SYNTAX_OPERATOR_OPTION_PERL: Self = _
(?imsx),(?-imsx)
Sourcepub const SYNTAX_OPERATOR_OPTION_RUBY: Self = _
pub const SYNTAX_OPERATOR_OPTION_RUBY: Self = _
(?imx), (?-imx)
Sourcepub const SYNTAX_OPERATOR_PLUS_POSSESSIVE_REPEAT: Self = _
pub const SYNTAX_OPERATOR_PLUS_POSSESSIVE_REPEAT: Self = _
?+,*+,++
Sourcepub const SYNTAX_OPERATOR_PLUS_POSSESSIVE_INTERVAL: Self = _
pub const SYNTAX_OPERATOR_PLUS_POSSESSIVE_INTERVAL: Self = _
{n,m}+
Sourcepub const SYNTAX_OPERATOR_CCLASS_SET_OP: Self = _
pub const SYNTAX_OPERATOR_CCLASS_SET_OP: Self = _
[...&&..[..]..]
Sourcepub const SYNTAX_OPERATOR_QMARK_LT_NAMED_GROUP: Self = _
pub const SYNTAX_OPERATOR_QMARK_LT_NAMED_GROUP: Self = _
(?<name>...)
Sourcepub const SYNTAX_OPERATOR_ESC_K_NAMED_BACKREF: Self = _
pub const SYNTAX_OPERATOR_ESC_K_NAMED_BACKREF: Self = _
\k<name>
Sourcepub const SYNTAX_OPERATOR_ESC_G_SUBEXP_CALL: Self = _
pub const SYNTAX_OPERATOR_ESC_G_SUBEXP_CALL: Self = _
\g<name>, \g<n>
Sourcepub const SYNTAX_OPERATOR_ATMARK_CAPTURE_HISTORY: Self = _
pub const SYNTAX_OPERATOR_ATMARK_CAPTURE_HISTORY: Self = _
(?@..),(?@<x>..)
Sourcepub const SYNTAX_OPERATOR_ESC_CAPITAL_C_BAR_CONTROL: Self = _
pub const SYNTAX_OPERATOR_ESC_CAPITAL_C_BAR_CONTROL: Self = _
\C-x
Sourcepub const SYNTAX_OPERATOR_ESC_CAPITAL_M_BAR_META: Self = _
pub const SYNTAX_OPERATOR_ESC_CAPITAL_M_BAR_META: Self = _
\M-x
Sourcepub const SYNTAX_OPERATOR_ESC_V_VTAB: Self = _
pub const SYNTAX_OPERATOR_ESC_V_VTAB: Self = _
\v as VTAB
Sourcepub const SYNTAX_OPERATOR_ESC_U_HEX4: Self = _
pub const SYNTAX_OPERATOR_ESC_U_HEX4: Self = _
\uHHHH
Sourcepub const SYNTAX_OPERATOR_ESC_GNU_BUF_ANCHOR: Self = _
pub const SYNTAX_OPERATOR_ESC_GNU_BUF_ANCHOR: Self = _
\
, '`
Sourcepub const SYNTAX_OPERATOR_ESC_P_BRACE_CHAR_PROPERTY: Self = _
pub const SYNTAX_OPERATOR_ESC_P_BRACE_CHAR_PROPERTY: Self = _
\p{...}, \P{...}
Sourcepub const SYNTAX_OPERATOR_ESC_P_BRACE_CIRCUMFLEX_NOT: Self = _
pub const SYNTAX_OPERATOR_ESC_P_BRACE_CIRCUMFLEX_NOT: Self = _
\p{^..}, \P{^..}
Sourcepub const SYNTAX_OPERATOR_ESC_H_XDIGIT: Self = _
pub const SYNTAX_OPERATOR_ESC_H_XDIGIT: Self = _
\h, \H
Sourcepub const SYNTAX_OPERATOR_INEFFECTIVE_ESCAPE: Self = _
pub const SYNTAX_OPERATOR_INEFFECTIVE_ESCAPE: Self = _
\
Sourcepub const fn from_bits(bits: u64) -> Option<Self>
pub const fn from_bits(bits: u64) -> Option<Self>
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
Sourcepub const fn from_bits_truncate(bits: u64) -> Self
pub const fn from_bits_truncate(bits: u64) -> Self
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
Sourcepub const unsafe fn from_bits_unchecked(bits: u64) -> Self
pub const unsafe fn from_bits_unchecked(bits: u64) -> Self
Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
§Safety
The caller of the bitflags!
macro can chose to allow or
disallow extra bits for their bitflags type.
The caller of from_bits_unchecked()
has to ensure that
all bits correspond to a defined flag or that extra bits
are valid for this bitflags type.
Sourcepub const fn intersects(&self, other: Self) -> bool
pub const fn intersects(&self, other: Self) -> bool
Returns true
if there are flags common to both self
and other
.
Sourcepub const fn contains(&self, other: Self) -> bool
pub const fn contains(&self, other: Self) -> bool
Returns true
if all of the flags in other
are contained within self
.
Sourcepub fn set(&mut self, other: Self, value: bool)
pub fn set(&mut self, other: Self, value: bool)
Inserts or removes the specified flags depending on the passed value.
Sourcepub const fn intersection(self, other: Self) -> Self
pub const fn intersection(self, other: Self) -> Self
Returns the intersection between the flags in self
and
other
.
Specifically, the returned set contains only the flags which are
present in both self
and other
.
This is equivalent to using the &
operator (e.g.
ops::BitAnd
), as in flags & other
.
Sourcepub const fn union(self, other: Self) -> Self
pub const fn union(self, other: Self) -> Self
Returns the union of between the flags in self
and other
.
Specifically, the returned set contains all flags which are
present in either self
or other
, including any which are
present in both (see Self::symmetric_difference
if that
is undesirable).
This is equivalent to using the |
operator (e.g.
ops::BitOr
), as in flags | other
.
Sourcepub const fn difference(self, other: Self) -> Self
pub const fn difference(self, other: Self) -> Self
Returns the difference between the flags in self
and other
.
Specifically, the returned set contains all flags present in
self
, except for the ones present in other
.
It is also conceptually equivalent to the “bit-clear” operation:
flags & !other
(and this syntax is also supported).
This is equivalent to using the -
operator (e.g.
ops::Sub
), as in flags - other
.
Sourcepub const fn symmetric_difference(self, other: Self) -> Self
pub const fn symmetric_difference(self, other: Self) -> Self
Returns the symmetric difference between the flags
in self
and other
.
Specifically, the returned set contains the flags present which
are present in self
or other
, but that are not present in
both. Equivalently, it contains the flags present in exactly
one of the sets self
and other
.
This is equivalent to using the ^
operator (e.g.
ops::BitXor
), as in flags ^ other
.
Sourcepub const fn complement(self) -> Self
pub const fn complement(self) -> Self
Returns the complement of this set of flags.
Specifically, the returned set contains all the flags which are
not set in self
, but which are allowed for this type.
Alternatively, it can be thought of as the set difference
between Self::all()
and self
(e.g. Self::all() - self
)
This is equivalent to using the !
operator (e.g.
ops::Not
), as in !flags
.
Trait Implementations§
Source§impl Binary for SyntaxOperator
impl Binary for SyntaxOperator
Source§impl BitAnd for SyntaxOperator
impl BitAnd for SyntaxOperator
Source§impl BitAndAssign for SyntaxOperator
impl BitAndAssign for SyntaxOperator
Source§fn bitand_assign(&mut self, other: Self)
fn bitand_assign(&mut self, other: Self)
Disables all flags disabled in the set.
Source§impl BitOr for SyntaxOperator
impl BitOr for SyntaxOperator
Source§fn bitor(self, other: SyntaxOperator) -> Self
fn bitor(self, other: SyntaxOperator) -> Self
Returns the union of the two sets of flags.
Source§type Output = SyntaxOperator
type Output = SyntaxOperator
|
operator.Source§impl BitOrAssign for SyntaxOperator
impl BitOrAssign for SyntaxOperator
Source§fn bitor_assign(&mut self, other: Self)
fn bitor_assign(&mut self, other: Self)
Adds the set of flags.
Source§impl BitXor for SyntaxOperator
impl BitXor for SyntaxOperator
Source§impl BitXorAssign for SyntaxOperator
impl BitXorAssign for SyntaxOperator
Source§fn bitxor_assign(&mut self, other: Self)
fn bitxor_assign(&mut self, other: Self)
Toggles the set of flags.
Source§impl Clone for SyntaxOperator
impl Clone for SyntaxOperator
Source§fn clone(&self) -> SyntaxOperator
fn clone(&self) -> SyntaxOperator
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for SyntaxOperator
impl Debug for SyntaxOperator
Source§impl Extend<SyntaxOperator> for SyntaxOperator
impl Extend<SyntaxOperator> for SyntaxOperator
Source§fn extend<T: IntoIterator<Item = Self>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = Self>>(&mut self, iterator: T)
Source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)Source§impl FromIterator<SyntaxOperator> for SyntaxOperator
impl FromIterator<SyntaxOperator> for SyntaxOperator
Source§fn from_iter<T: IntoIterator<Item = Self>>(iterator: T) -> Self
fn from_iter<T: IntoIterator<Item = Self>>(iterator: T) -> Self
Source§impl Hash for SyntaxOperator
impl Hash for SyntaxOperator
Source§impl LowerHex for SyntaxOperator
impl LowerHex for SyntaxOperator
Source§impl Not for SyntaxOperator
impl Not for SyntaxOperator
Source§impl Octal for SyntaxOperator
impl Octal for SyntaxOperator
Source§impl Ord for SyntaxOperator
impl Ord for SyntaxOperator
Source§fn cmp(&self, other: &SyntaxOperator) -> Ordering
fn cmp(&self, other: &SyntaxOperator) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for SyntaxOperator
impl PartialEq for SyntaxOperator
Source§impl PartialOrd for SyntaxOperator
impl PartialOrd for SyntaxOperator
Source§impl Sub for SyntaxOperator
impl Sub for SyntaxOperator
Source§impl SubAssign for SyntaxOperator
impl SubAssign for SyntaxOperator
Source§fn sub_assign(&mut self, other: Self)
fn sub_assign(&mut self, other: Self)
Disables all flags enabled in the set.