pub fn black_box<'a, T, O>(
operation: &'a mut dyn Operation<T>,
) -> impl Operation<O> + 'awhere
T: 'a,
Available on crate feature
advanced
only.Expand description
Wraps the Operation
in a black box, erasing its returning type.