#[repr(C)]pub struct YaraMapperOptions {
pub error_rate: f32,
pub strata_rate: f32,
pub strata_count: i32,
pub sensitivity: i32,
pub threads: i32,
pub secondary_mode: i32,
pub align_secondary: i32,
pub verify_matches: i32,
pub verbose: i32,
pub library_length: i32,
pub library_dev: i32,
}Expand description
Mapper configuration passed to yara_mapper_open.
Fields§
§error_rate: f32§strata_rate: f32§strata_count: i32§sensitivity: i32§threads: i32§secondary_mode: i32§align_secondary: i32§verify_matches: i32§verbose: i32§library_length: i32§library_dev: i32Trait Implementations§
Source§impl Clone for YaraMapperOptions
impl Clone for YaraMapperOptions
Source§fn clone(&self) -> YaraMapperOptions
fn clone(&self) -> YaraMapperOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for YaraMapperOptions
impl RefUnwindSafe for YaraMapperOptions
impl Send for YaraMapperOptions
impl Sync for YaraMapperOptions
impl Unpin for YaraMapperOptions
impl UnsafeUnpin for YaraMapperOptions
impl UnwindSafe for YaraMapperOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more