#[repr(C)]pub struct RegExpFlags {
pub flags_: u8,
}Expand description
A collection of regular expression flags. Individual flag values may be combined into a collection using bitwise operators.
Fields§
§flags_: u8Trait Implementations§
Source§impl Clone for RegExpFlags
impl Clone for RegExpFlags
Source§fn clone(&self) -> RegExpFlags
fn clone(&self) -> RegExpFlags
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RegExpFlags
Source§impl Debug for RegExpFlags
impl Debug for RegExpFlags
Source§impl PartialEq for RegExpFlags
impl PartialEq for RegExpFlags
Source§fn eq(&self, other: &RegExpFlags) -> bool
fn eq(&self, other: &RegExpFlags) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RegExpFlags
Auto Trait Implementations§
impl Freeze for RegExpFlags
impl RefUnwindSafe for RegExpFlags
impl Send for RegExpFlags
impl Sync for RegExpFlags
impl Unpin for RegExpFlags
impl UnsafeUnpin for RegExpFlags
impl UnwindSafe for RegExpFlags
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Filterable for T
impl<T> Filterable for T
Source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(DataRequest<'_>) -> bool>
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(DataRequest<'_>) -> bool>
Creates a filterable data provider with the given name for debugging. Read more