pub struct TridentConfig {
pub honggfuzz: Option<HonggFuzz>,
pub afl: Option<Afl>,
pub fuzz: Option<Fuzz>,
}Fields§
§honggfuzz: Option<HonggFuzz>§afl: Option<Afl>§fuzz: Option<Fuzz>Implementations§
Source§impl TridentConfig
impl TridentConfig
pub fn new() -> TridentConfig
pub fn get_honggfuzz_args(&self, cli_input: String) -> String
pub fn get_honggfuzz_workspace(&self) -> String
pub fn get_honggfuzz_target_dir(&self) -> String
pub fn get_afl_target_dir(&self) -> String
pub fn get_afl_target_path(&self, target: &str) -> String
pub fn get_afl_workspace_in(&self) -> String
pub fn get_afl_workspace_out(&self) -> String
pub fn get_afl_build_args(&self) -> Vec<String>
pub fn get_afl_fuzz_args(&self) -> Vec<String>
pub fn get_initial_seed(&self) -> Vec<AflSeed>
pub fn get_fuzzing_with_stats(&self) -> bool
pub fn get_allow_duplicate_txs(&self) -> bool
pub fn programs(&self) -> Vec<FuzzProgram>
pub fn accounts(&self) -> Vec<FuzzAccount>
Trait Implementations§
Source§impl Clone for TridentConfig
impl Clone for TridentConfig
Source§fn clone(&self) -> TridentConfig
fn clone(&self) -> TridentConfig
Returns a copy 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 moreSource§impl Debug for TridentConfig
impl Debug for TridentConfig
Source§impl Default for TridentConfig
impl Default for TridentConfig
Source§fn default() -> TridentConfig
fn default() -> TridentConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TridentConfig
impl<'de> Deserialize<'de> for TridentConfig
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TridentConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TridentConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TridentConfig
impl RefUnwindSafe for TridentConfig
impl Send for TridentConfig
impl Sync for TridentConfig
impl Unpin for TridentConfig
impl UnwindSafe for TridentConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more