Struct frida_sys::_GScannerConfig[][src]

#[repr(C)]
pub struct _GScannerConfig { pub cset_skip_characters: *mut gchar, pub cset_identifier_first: *mut gchar, pub cset_identifier_nth: *mut gchar, pub cpair_comment_single: *mut gchar, pub _bitfield_align_1: [u8; 0], pub _bitfield_1: __BindgenBitfieldUnit<[u8; 3]>, pub padding_dummy: guint, }

Fields

cset_skip_characters: *mut gcharcset_identifier_first: *mut gcharcset_identifier_nth: *mut gcharcpair_comment_single: *mut gchar_bitfield_align_1: [u8; 0]_bitfield_1: __BindgenBitfieldUnit<[u8; 3]>padding_dummy: guint

Implementations

impl _GScannerConfig[src]

pub fn case_sensitive(&self) -> guint[src]

pub fn set_case_sensitive(&mut self, val: guint)[src]

pub fn skip_comment_multi(&self) -> guint[src]

pub fn set_skip_comment_multi(&mut self, val: guint)[src]

pub fn skip_comment_single(&self) -> guint[src]

pub fn set_skip_comment_single(&mut self, val: guint)[src]

pub fn scan_comment_multi(&self) -> guint[src]

pub fn set_scan_comment_multi(&mut self, val: guint)[src]

pub fn scan_identifier(&self) -> guint[src]

pub fn set_scan_identifier(&mut self, val: guint)[src]

pub fn scan_identifier_1char(&self) -> guint[src]

pub fn set_scan_identifier_1char(&mut self, val: guint)[src]

pub fn scan_identifier_NULL(&self) -> guint[src]

pub fn set_scan_identifier_NULL(&mut self, val: guint)[src]

pub fn scan_symbols(&self) -> guint[src]

pub fn set_scan_symbols(&mut self, val: guint)[src]

pub fn scan_binary(&self) -> guint[src]

pub fn set_scan_binary(&mut self, val: guint)[src]

pub fn scan_octal(&self) -> guint[src]

pub fn set_scan_octal(&mut self, val: guint)[src]

pub fn scan_float(&self) -> guint[src]

pub fn set_scan_float(&mut self, val: guint)[src]

pub fn scan_hex(&self) -> guint[src]

pub fn set_scan_hex(&mut self, val: guint)[src]

pub fn scan_hex_dollar(&self) -> guint[src]

pub fn set_scan_hex_dollar(&mut self, val: guint)[src]

pub fn scan_string_sq(&self) -> guint[src]

pub fn set_scan_string_sq(&mut self, val: guint)[src]

pub fn scan_string_dq(&self) -> guint[src]

pub fn set_scan_string_dq(&mut self, val: guint)[src]

pub fn numbers_2_int(&self) -> guint[src]

pub fn set_numbers_2_int(&mut self, val: guint)[src]

pub fn int_2_float(&self) -> guint[src]

pub fn set_int_2_float(&mut self, val: guint)[src]

pub fn identifier_2_string(&self) -> guint[src]

pub fn set_identifier_2_string(&mut self, val: guint)[src]

pub fn char_2_token(&self) -> guint[src]

pub fn set_char_2_token(&mut self, val: guint)[src]

pub fn symbol_2_token(&self) -> guint[src]

pub fn set_symbol_2_token(&mut self, val: guint)[src]

pub fn scope_0_fallback(&self) -> guint[src]

pub fn set_scope_0_fallback(&mut self, val: guint)[src]

pub fn store_int64(&self) -> guint[src]

pub fn set_store_int64(&mut self, val: guint)[src]

pub fn new_bitfield_1(
    case_sensitive: guint,
    skip_comment_multi: guint,
    skip_comment_single: guint,
    scan_comment_multi: guint,
    scan_identifier: guint,
    scan_identifier_1char: guint,
    scan_identifier_NULL: guint,
    scan_symbols: guint,
    scan_binary: guint,
    scan_octal: guint,
    scan_float: guint,
    scan_hex: guint,
    scan_hex_dollar: guint,
    scan_string_sq: guint,
    scan_string_dq: guint,
    numbers_2_int: guint,
    int_2_float: guint,
    identifier_2_string: guint,
    char_2_token: guint,
    symbol_2_token: guint,
    scope_0_fallback: guint,
    store_int64: guint
) -> __BindgenBitfieldUnit<[u8; 3]>
[src]

Trait Implementations

impl Clone for _GScannerConfig[src]

fn clone(&self) -> _GScannerConfig[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for _GScannerConfig[src]

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

Formats the value using the given formatter. Read more

impl Copy for _GScannerConfig[src]

Auto Trait Implementations

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

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

pub fn clone_into(&self, target: &mut T)[src]

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

recently added

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

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.

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

Performs the conversion.

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.

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

Performs the conversion.