Trait quil_rs::instruction::GetMatchingFramesFnMut

source ·
pub trait GetMatchingFramesFnMut: for<'a> FnMut(&'a Instruction, &'a Program) -> Option<Option<MatchedFrames<'a>>> { }
Expand description

Trait signature for a function or closure that returns an optional override for an instruction’s MatchedFrames.

Implementors§

source§

impl<F> GetMatchingFramesFnMut for F
where F: for<'a> FnMut(&'a Instruction, &'a Program) -> Option<Option<MatchedFrames<'a>>>,