Struct libafl_frida::FridaOptions[][src]

pub struct FridaOptions { /* fields omitted */ }

A representation of the various Frida options

Implementations

impl FridaOptions[src]

pub fn parse_env_options() -> Self[src]

Parse the frida options from the LIBAFL_FRIDA_OPTIONS environment variable.

Options are ‘:’ separated, and each options is a ‘name=value’ string.

pub fn asan_enabled(self) -> bool[src]

Is ASAN enabled?

pub fn coverage_enabled(self) -> bool[src]

Is coverage enabled?

pub fn drcov_enabled(self) -> bool[src]

Is DrCov enabled?

pub fn asan_detect_leaks(self) -> bool[src]

Should ASAN detect leaks

pub fn asan_continue_after_error(self) -> bool[src]

Should ASAN continue after a memory error is detected

pub fn asan_allocation_backtraces(self) -> bool[src]

Should ASAN gather (and report) allocation-/free-site backtraces

pub fn stalker_enabled(self) -> bool[src]

Whether stalker should be enabled. I.e. whether at least one stalker requiring option is enabled.

Trait Implementations

impl Clone for FridaOptions[src]

impl Copy for FridaOptions[src]

impl Debug for FridaOptions[src]

impl Default for FridaOptions[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> Same<T> for T

type Output = T

Should always be Self

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.