Struct regex_syntax::hir::PropertiesI
source · struct PropertiesI {
minimum_len: Option<usize>,
maximum_len: Option<usize>,
look_set: LookSet,
look_set_prefix: LookSet,
look_set_suffix: LookSet,
look_set_prefix_any: LookSet,
look_set_suffix_any: LookSet,
utf8: bool,
explicit_captures_len: usize,
static_explicit_captures_len: Option<usize>,
literal: bool,
alternation_literal: bool,
}
Expand description
The property definition. It is split out so that we can box it, and
there by make Properties
use less stack size. This is kind-of important
because every HIR value has a Properties
attached to it.
This does have the unfortunate consequence that creating any HIR value always leads to at least one alloc for properties, but this is generally true anyway (for pretty much all HirKinds except for look-arounds).
Fields§
§minimum_len: Option<usize>
§maximum_len: Option<usize>
§look_set: LookSet
§look_set_prefix: LookSet
§look_set_suffix: LookSet
§look_set_prefix_any: LookSet
§look_set_suffix_any: LookSet
§utf8: bool
§explicit_captures_len: usize
§static_explicit_captures_len: Option<usize>
§literal: bool
§alternation_literal: bool
Trait Implementations§
source§impl Clone for PropertiesI
impl Clone for PropertiesI
source§fn clone(&self) -> PropertiesI
fn clone(&self) -> PropertiesI
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 PropertiesI
impl Debug for PropertiesI
source§impl PartialEq for PropertiesI
impl PartialEq for PropertiesI
source§fn eq(&self, other: &PropertiesI) -> bool
fn eq(&self, other: &PropertiesI) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for PropertiesI
impl StructuralPartialEq for PropertiesI
Auto Trait Implementations§
impl Freeze for PropertiesI
impl RefUnwindSafe for PropertiesI
impl Send for PropertiesI
impl Sync for PropertiesI
impl Unpin for PropertiesI
impl UnwindSafe for PropertiesI
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