fn exportable_items_provider_local<'tcx>(
tcx: TyCtxt<'tcx>,
_: LocalCrate,
) -> &'tcx [DefId]
Expand description
Exportable items:
- Structs/enums/unions with a stable representation (e.g. repr(i32) or repr(C)).
- Primitive types.
- Non-generic functions with a stable ABI (e.g. extern āCā) for which every user
defined type used in the signature is also marked as
#[export]
.