pub(crate) trait Lift {
    type Abstract;

    // Required method
    fn lift(&self) -> Self::Abstract;
}

Required Associated Types§

Required Methods§

Source

fn lift(&self) -> Self::Abstract

Implementations on Foreign Types§

Source§

impl Lift for Local

Source§

impl<'tcx> Lift for Operand<'tcx>

Source§

impl<'tcx> Lift for Ty<'tcx>

Source§

impl<'tcx> Lift for PlaceElem<'tcx>

Implementors§