pub trait ToBruteForce<Insn, InputParameters, ReturnValue: Clone, TargetFunction: Callable<InputParameters, ReturnValue>> {
// Required method
fn to_bruteforce(
self,
target_function: TargetFunction,
) -> BruteForce<Insn, InputParameters, ReturnValue, TargetFunction, Self>
where Self: Callable<InputParameters, ReturnValue> + BruteforceSearch<Insn> + Sized;
}Expand description
Converts something to a BruteForce, which performs brute force searches over some search space for a given function.
Required Methods§
Sourcefn to_bruteforce(
self,
target_function: TargetFunction,
) -> BruteForce<Insn, InputParameters, ReturnValue, TargetFunction, Self>
fn to_bruteforce( self, target_function: TargetFunction, ) -> BruteForce<Insn, InputParameters, ReturnValue, TargetFunction, Self>
Return a BruteForce