[][src]Struct nginx::pcre32_callout_block

#[repr(C)]pub struct pcre32_callout_block {
    pub version: c_int,
    pub callout_number: c_int,
    pub offset_vector: *mut c_int,
    pub subject: *const c_uint,
    pub subject_length: c_int,
    pub start_match: c_int,
    pub current_position: c_int,
    pub capture_top: c_int,
    pub capture_last: c_int,
    pub callout_data: *mut c_void,
    pub pattern_position: c_int,
    pub next_item_length: c_int,
    pub mark: *const c_uint,
}

Fields

version: c_intcallout_number: c_intoffset_vector: *mut c_intsubject: *const c_uintsubject_length: c_intstart_match: c_intcurrent_position: c_intcapture_top: c_intcapture_last: c_intcallout_data: *mut c_voidpattern_position: c_intnext_item_length: c_intmark: *const c_uint

Trait Implementations

impl Clone for pcre32_callout_block[src]

impl Copy for pcre32_callout_block[src]

impl Debug for pcre32_callout_block[src]

Auto Trait Implementations

impl RefUnwindSafe for pcre32_callout_block

impl !Send for pcre32_callout_block

impl !Sync for pcre32_callout_block

impl Unpin for pcre32_callout_block

impl UnwindSafe for pcre32_callout_block

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.