[][src]Struct yara_sys::YR_RULES_STATS

#[repr(C)]
pub struct YR_RULES_STATS {
    pub rules: u32,
    pub strings: u32,
    pub ac_matches: u32,
    pub ac_root_match_list_length: u32,
    pub ac_average_match_list_length: f32,
    pub top_ac_match_list_lengths: [u32; 100],
    pub ac_match_list_length_pctls: [u32; 101],
    pub ac_tables_size: u32,
}

Fields

rules: u32strings: u32ac_matches: u32ac_root_match_list_length: u32ac_average_match_list_length: f32top_ac_match_list_lengths: [u32; 100]ac_match_list_length_pctls: [u32; 101]ac_tables_size: u32

Trait Implementations

impl Clone for YR_RULES_STATS[src]

impl Copy for YR_RULES_STATS[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.