#[repr(u32)]pub enum GRegexMatchFlags {
Show 15 variants
G_REGEX_MATCH_DEFAULT = 0,
G_REGEX_MATCH_ANCHORED = 16,
G_REGEX_MATCH_NOTBOL = 128,
G_REGEX_MATCH_NOTEOL = 256,
G_REGEX_MATCH_NOTEMPTY = 1_024,
G_REGEX_MATCH_PARTIAL = 32_768,
G_REGEX_MATCH_NEWLINE_CR = 1_048_576,
G_REGEX_MATCH_NEWLINE_LF = 2_097_152,
G_REGEX_MATCH_NEWLINE_CRLF = 3_145_728,
G_REGEX_MATCH_NEWLINE_ANY = 4_194_304,
G_REGEX_MATCH_NEWLINE_ANYCRLF = 5_242_880,
G_REGEX_MATCH_BSR_ANYCRLF = 8_388_608,
G_REGEX_MATCH_BSR_ANY = 16_777_216,
G_REGEX_MATCH_PARTIAL_HARD = 134_217_728,
G_REGEX_MATCH_NOTEMPTY_ATSTART = 268_435_456,
}Variants§
G_REGEX_MATCH_DEFAULT = 0
G_REGEX_MATCH_ANCHORED = 16
G_REGEX_MATCH_NOTBOL = 128
G_REGEX_MATCH_NOTEOL = 256
G_REGEX_MATCH_NOTEMPTY = 1_024
G_REGEX_MATCH_PARTIAL = 32_768
G_REGEX_MATCH_NEWLINE_CR = 1_048_576
G_REGEX_MATCH_NEWLINE_LF = 2_097_152
G_REGEX_MATCH_NEWLINE_CRLF = 3_145_728
G_REGEX_MATCH_NEWLINE_ANY = 4_194_304
G_REGEX_MATCH_NEWLINE_ANYCRLF = 5_242_880
G_REGEX_MATCH_BSR_ANYCRLF = 8_388_608
G_REGEX_MATCH_BSR_ANY = 16_777_216
G_REGEX_MATCH_PARTIAL_HARD = 134_217_728
G_REGEX_MATCH_NOTEMPTY_ATSTART = 268_435_456
Implementations§
Source§impl GRegexMatchFlags
impl GRegexMatchFlags
pub const G_REGEX_MATCH_PARTIAL_SOFT: GRegexMatchFlags = GRegexMatchFlags::G_REGEX_MATCH_PARTIAL
Trait Implementations§
Source§impl Clone for GRegexMatchFlags
impl Clone for GRegexMatchFlags
Source§fn clone(&self) -> GRegexMatchFlags
fn clone(&self) -> GRegexMatchFlags
Returns a duplicate 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 GRegexMatchFlags
impl Debug for GRegexMatchFlags
Source§impl Hash for GRegexMatchFlags
impl Hash for GRegexMatchFlags
Source§impl PartialEq for GRegexMatchFlags
impl PartialEq for GRegexMatchFlags
impl Copy for GRegexMatchFlags
impl Eq for GRegexMatchFlags
impl StructuralPartialEq for GRegexMatchFlags
Auto Trait Implementations§
impl Freeze for GRegexMatchFlags
impl RefUnwindSafe for GRegexMatchFlags
impl Send for GRegexMatchFlags
impl Sync for GRegexMatchFlags
impl Unpin for GRegexMatchFlags
impl UnwindSafe for GRegexMatchFlags
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