#[repr(C)]
pub struct re_pattern_buffer {
Show 33 fields pub p: *mut c_uchar, pub used: c_uint, pub alloc: c_uint, pub num_mem: c_int, pub num_repeat: c_int, pub num_null_check: c_int, pub num_comb_exp_check: c_int, pub num_call: c_int, pub capture_history: c_uint, pub bt_mem_start: c_uint, pub bt_mem_end: c_uint, pub stack_pop_level: c_int, pub repeat_range_alloc: c_int, pub options: OnigOptionType, pub repeat_range: *mut OnigRepeatRange, pub enc: OnigEncoding, pub syntax: *const OnigSyntaxType, pub name_table: *mut c_void, pub case_fold_flag: OnigCaseFoldType, pub optimize: c_int, pub threshold_len: c_int, pub anchor: c_int, pub anchor_dmin: OnigDistance, pub anchor_dmax: OnigDistance, pub sub_anchor: c_int, pub exact: *mut c_uchar, pub exact_end: *mut c_uchar, pub map: [c_uchar; 256], pub int_map: *mut c_int, pub int_map_backward: *mut c_int, pub dmin: OnigDistance, pub dmax: OnigDistance, pub chain: *mut re_pattern_buffer,
}

Fields§

§p: *mut c_uchar§used: c_uint§alloc: c_uint§num_mem: c_int§num_repeat: c_int§num_null_check: c_int§num_comb_exp_check: c_int§num_call: c_int§capture_history: c_uint§bt_mem_start: c_uint§bt_mem_end: c_uint§stack_pop_level: c_int§repeat_range_alloc: c_int§options: OnigOptionType§repeat_range: *mut OnigRepeatRange§enc: OnigEncoding§syntax: *const OnigSyntaxType§name_table: *mut c_void§case_fold_flag: OnigCaseFoldType§optimize: c_int§threshold_len: c_int§anchor: c_int§anchor_dmin: OnigDistance§anchor_dmax: OnigDistance§sub_anchor: c_int§exact: *mut c_uchar§exact_end: *mut c_uchar§map: [c_uchar; 256]§int_map: *mut c_int§int_map_backward: *mut c_int§dmin: OnigDistance§dmax: OnigDistance§chain: *mut re_pattern_buffer

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used by ==.
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.