Struct yara_sys::YR_SCAN_CONTEXT[][src]

#[repr(C)]
pub struct YR_SCAN_CONTEXT {
Show fields pub file_size: u64, pub entry_point: u64, pub flags: c_int, pub canary: c_int, pub timeout: u64, pub user_data: *mut c_void, pub callback: YR_CALLBACK_FUNC, pub rules: *mut YR_RULES, pub last_error_string: *mut YR_STRING, pub iterator: *mut YR_MEMORY_BLOCK_ITERATOR, pub objects_table: *mut YR_HASH_TABLE, pub matches_notebook: *mut YR_NOTEBOOK, pub stopwatch: YR_STOPWATCH, pub re_fiber_pool: RE_FIBER_POOL, pub rule_matches_flags: *mut c_ulong, pub ns_unsatisfied_flags: *mut c_ulong, pub matches: *mut YR_MATCHES, pub unconfirmed_matches: *mut YR_MATCHES, pub profiling_info: *mut YR_PROFILING_INFO,
}

Fields

file_size: u64entry_point: u64flags: c_intcanary: c_inttimeout: u64user_data: *mut c_voidcallback: YR_CALLBACK_FUNCrules: *mut YR_RULESlast_error_string: *mut YR_STRINGiterator: *mut YR_MEMORY_BLOCK_ITERATORobjects_table: *mut YR_HASH_TABLEmatches_notebook: *mut YR_NOTEBOOKstopwatch: YR_STOPWATCHre_fiber_pool: RE_FIBER_POOLrule_matches_flags: *mut c_ulongns_unsatisfied_flags: *mut c_ulongmatches: *mut YR_MATCHESunconfirmed_matches: *mut YR_MATCHESprofiling_info: *mut YR_PROFILING_INFO

Trait Implementations

impl Clone for YR_SCAN_CONTEXT[src]

impl Copy for YR_SCAN_CONTEXT[src]

Auto Trait Implementations

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.