Function guerrilla::patch9

source ·
pub fn patch9<R, A, B, C, D, E, F, G, H, I>(
    target: fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I) -> R,
    func: fn(_: A, _: B, _: C, _: D, _: E, _: F, _: G, _: H, _: I) -> R
) -> PatchGuard
Expand description

Patch replaces a function with another. Accepts closures as replacement functions as long as they do not bind to the environment.