#[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_ucharused: c_uintalloc: c_uintnum_mem: c_intnum_repeat: c_intnum_null_check: c_intnum_comb_exp_check: c_intnum_call: c_intcapture_history: c_uintbt_mem_start: c_uintbt_mem_end: c_uintstack_pop_level: c_intrepeat_range_alloc: c_intoptions: OnigOptionTyperepeat_range: *mut OnigRepeatRangeenc: OnigEncodingsyntax: *const OnigSyntaxTypename_table: *mut c_voidcase_fold_flag: OnigCaseFoldTypeoptimize: c_intthreshold_len: c_intanchor: c_intanchor_dmin: OnigDistanceanchor_dmax: OnigDistancesub_anchor: c_intexact: *mut c_ucharexact_end: *mut c_ucharmap: [c_uchar; 256]int_map: *mut c_intint_map_backward: *mut c_intdmin: OnigDistancedmax: OnigDistancechain: *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 ==. Read more

This method tests for !=.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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.