Function exportable_items_provider_local

Source
fn exportable_items_provider_local<'tcx>(
    tcx: TyCtxt<'tcx>,
    _: LocalCrate,
) -> &'tcx [DefId]
Expand description

Exportable items:

  1. Structs/enums/unions with a stable representation (e.g. repr(i32) or repr(C)).
  2. Primitive types.
  3. 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].