[][src]Struct yara_sys::YR_RULES

#[repr(C)]
pub struct YR_RULES {
    pub tidx_mask: [c_uchar; 4],
    pub code_start: *const u8,
    pub mutex: YR_MUTEX,
    pub arena: *mut YR_ARENA,
    pub rules_list_head: *mut YR_RULE,
    pub externals_list_head: *mut YR_EXTERNAL_VARIABLE,
    pub ac_transition_table: YR_AC_TRANSITION_TABLE,
    pub ac_match_table: YR_AC_MATCH_TABLE,
    pub ac_tables_size: u32,
    pub time_cost: u64,
}

Fields

tidx_mask: [c_uchar; 4]code_start: *const u8mutex: YR_MUTEXarena: *mut YR_ARENArules_list_head: *mut YR_RULEexternals_list_head: *mut YR_EXTERNAL_VARIABLEac_transition_table: YR_AC_TRANSITION_TABLEac_match_table: YR_AC_MATCH_TABLEac_tables_size: u32time_cost: u64

Trait Implementations

impl Clone for YR_RULES[src]

impl Copy for YR_RULES[src]

Auto Trait Implementations

impl RefUnwindSafe for YR_RULES

impl !Send for YR_RULES

impl !Sync for YR_RULES

impl Unpin for YR_RULES

impl UnwindSafe for YR_RULES

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.