pub struct RegexecFlags(/* private fields */);
Expand description
Flags to pass to regexec
.
Implementations§
Source§impl RegexecFlags
impl RegexecFlags
Sourcepub const APPROX_MATCHER: RegFlags = 4i32
pub const APPROX_MATCHER: RegFlags = 4i32
Use the approximate matcher
Sourcepub const BACKTRACKING_MATCHER: RegFlags = 8i32
pub const BACKTRACKING_MATCHER: RegFlags = 8i32
Use the backtracking matcher
Trait Implementations§
Source§impl Clone for RegexecFlags
impl Clone for RegexecFlags
Source§fn clone(&self) -> RegexecFlags
fn clone(&self) -> RegexecFlags
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 RegexecFlags
impl Debug for RegexecFlags
Source§impl Ord for RegexecFlags
impl Ord for RegexecFlags
Source§fn cmp(&self, other: &RegexecFlags) -> Ordering
fn cmp(&self, other: &RegexecFlags) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RegexecFlags
impl PartialEq for RegexecFlags
Source§impl PartialOrd for RegexecFlags
impl PartialOrd for RegexecFlags
impl Copy for RegexecFlags
impl Eq for RegexecFlags
impl StructuralPartialEq for RegexecFlags
Auto Trait Implementations§
impl Freeze for RegexecFlags
impl RefUnwindSafe for RegexecFlags
impl Send for RegexecFlags
impl Sync for RegexecFlags
impl Unpin for RegexecFlags
impl UnwindSafe for RegexecFlags
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