pub trait FunctionRecognizer {
// Provided methods
fn recognize_low_level_il(
&self,
_bv: &BinaryView,
_func: &Function,
_llil: &RegularLowLevelILFunction<CoreArchitecture>,
) -> bool { ... }
fn recognize_medium_level_il(
&self,
_bv: &BinaryView,
_func: &Function,
_mlil: &MediumLevelILFunction,
) -> bool { ... }
}