#[repr(C)]pub struct ngx_regex_compile_t {
pub pattern: ngx_str_t,
pub pool: *mut ngx_pool_s,
pub options: usize,
pub regex: *mut pcre2_real_code_8,
pub captures: i32,
pub named_captures: i32,
pub name_size: i32,
pub names: *mut u8,
pub err: ngx_str_t,
}
Fields§
§pattern: ngx_str_t
§pool: *mut ngx_pool_s
§options: usize
§regex: *mut pcre2_real_code_8
§captures: i32
§named_captures: i32
§name_size: i32
§names: *mut u8
§err: ngx_str_t
Trait Implementations§
Source§impl Clone for ngx_regex_compile_t
impl Clone for ngx_regex_compile_t
Source§fn clone(&self) -> ngx_regex_compile_t
fn clone(&self) -> ngx_regex_compile_t
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 ngx_regex_compile_t
impl Debug for ngx_regex_compile_t
impl Copy for ngx_regex_compile_t
Auto Trait Implementations§
impl Freeze for ngx_regex_compile_t
impl RefUnwindSafe for ngx_regex_compile_t
impl !Send for ngx_regex_compile_t
impl !Sync for ngx_regex_compile_t
impl Unpin for ngx_regex_compile_t
impl UnwindSafe for ngx_regex_compile_t
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