(
module_prefix: &'a str,
module: &'a ModuleDef,
ty: &'a AlgebraicTypeUse,
module_name: &'a str,
)
| 6668 | } |
| 6669 | |
| 6670 | fn cpp_ty_fmt_with_module<'a>( |
| 6671 | module_prefix: &'a str, |
| 6672 | module: &'a ModuleDef, |
| 6673 | ty: &'a AlgebraicTypeUse, |
| 6674 | module_name: &'a str, |
| 6675 | ) -> impl fmt::Display + 'a { |
| 6676 | cpp_ty_fmt_impl(module_prefix, module, ty, module_name) |
| 6677 | } |
| 6678 | |
| 6679 | fn cpp_ty_fmt_blueprint_compatible<'a>( |
| 6680 | module_prefix: &'a str, |
no test coverage detected
searching dependent graphs…