Struct rb_sys::bindings::uncategorized::re_pattern_buffer

source ·
#[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,
}
Expand description

Generated by rb-sys for Ruby 3.0.2

Fields§

§p: *mut c_uchar

Generated by rb-sys for Ruby 3.0.2

§used: c_uint

Generated by rb-sys for Ruby 3.0.2

§alloc: c_uint

Generated by rb-sys for Ruby 3.0.2

§num_mem: c_int

Generated by rb-sys for Ruby 3.0.2

§num_repeat: c_int

Generated by rb-sys for Ruby 3.0.2

§num_null_check: c_int

Generated by rb-sys for Ruby 3.0.2

§num_comb_exp_check: c_int

Generated by rb-sys for Ruby 3.0.2

§num_call: c_int

Generated by rb-sys for Ruby 3.0.2

§capture_history: c_uint

Generated by rb-sys for Ruby 3.0.2

§bt_mem_start: c_uint

Generated by rb-sys for Ruby 3.0.2

§bt_mem_end: c_uint

Generated by rb-sys for Ruby 3.0.2

§stack_pop_level: c_int

Generated by rb-sys for Ruby 3.0.2

§repeat_range_alloc: c_int

Generated by rb-sys for Ruby 3.0.2

§options: OnigOptionType

Generated by rb-sys for Ruby 3.0.2

§repeat_range: *mut OnigRepeatRange

Generated by rb-sys for Ruby 3.0.2

§enc: OnigEncoding

Generated by rb-sys for Ruby 3.0.2

§syntax: *const OnigSyntaxType

Generated by rb-sys for Ruby 3.0.2

§name_table: *mut c_void

Generated by rb-sys for Ruby 3.0.2

§case_fold_flag: OnigCaseFoldType

Generated by rb-sys for Ruby 3.0.2

§optimize: c_int

Generated by rb-sys for Ruby 3.0.2

§threshold_len: c_int

Generated by rb-sys for Ruby 3.0.2

§anchor: c_int

Generated by rb-sys for Ruby 3.0.2

§anchor_dmin: OnigDistance

Generated by rb-sys for Ruby 3.0.2

§anchor_dmax: OnigDistance

Generated by rb-sys for Ruby 3.0.2

§sub_anchor: c_int

Generated by rb-sys for Ruby 3.0.2

§exact: *mut c_uchar

Generated by rb-sys for Ruby 3.0.2

§exact_end: *mut c_uchar

Generated by rb-sys for Ruby 3.0.2

§map: [c_uchar; 256]

Generated by rb-sys for Ruby 3.0.2

§int_map: *mut c_int

Generated by rb-sys for Ruby 3.0.2

§int_map_backward: *mut c_int

Generated by rb-sys for Ruby 3.0.2

§dmin: OnigDistance

Generated by rb-sys for Ruby 3.0.2

§dmax: OnigDistance

Generated by rb-sys for Ruby 3.0.2

§chain: *mut re_pattern_buffer

Generated by rb-sys for Ruby 3.0.2

Trait Implementations§

source§

impl Clone for re_pattern_buffer

source§

fn clone(&self) -> re_pattern_buffer

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for re_pattern_buffer

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq for re_pattern_buffer

source§

fn eq(&self, other: &re_pattern_buffer) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for re_pattern_buffer

source§

impl Eq for re_pattern_buffer

source§

impl StructuralPartialEq for re_pattern_buffer

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.