#[repr(u64)]pub enum NSRegularExpressionOptions {
CaseInsensitive = 1,
AllowCommentsAndWhitespace = 2,
IgnoreMetacharacters = 4,
DotMatchesLineSeparators = 8,
AnchorsMatchLines = 16,
UseUnixLineSeparators = 32,
UseUnicodeWordBoundaries = 64,
}
Variants§
CaseInsensitive = 1
AllowCommentsAndWhitespace = 2
IgnoreMetacharacters = 4
DotMatchesLineSeparators = 8
AnchorsMatchLines = 16
UseUnixLineSeparators = 32
UseUnicodeWordBoundaries = 64
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NSRegularExpressionOptions
impl RefUnwindSafe for NSRegularExpressionOptions
impl Send for NSRegularExpressionOptions
impl Sync for NSRegularExpressionOptions
impl Unpin for NSRegularExpressionOptions
impl UnwindSafe for NSRegularExpressionOptions
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