(args: &mut Cb, text: &'a str)
| 2042 | |
| 2043 | #[inline] |
| 2044 | fn push_opaque<'a, Cb>(args: &mut Cb, text: &'a str) |
| 2045 | where Cb: FnMut(InstructionPart<'a>) { |
| 2046 | args(InstructionPart::opaque(text)); |
| 2047 | } |
| 2048 | |
| 2049 | #[inline] |
| 2050 | fn push_plain<Cb>(args: &mut Cb, text: &'static str) |
no outgoing calls
no test coverage detected