pub trait BackendTypes {
    type Value: CodegenObject;
    type Function: CodegenObject;
    type BasicBlock: Copy;
    type Type: CodegenObject;
    type Funclet;
    type DIScope: Copy;
    type DILocation: Copy;
    type DIVariable: Copy;
}

Required Associated Types§

Implementors§

impl<'ll, 'tcx> BackendTypes for Builder<'_, 'll, 'tcx>

impl<'ll> BackendTypes for CodegenCx<'ll, '_>