Trait HasBinderSetter

Source
pub trait HasBinderSetter<'tcx> {
    type Out;

    // Required method
    fn with_binder(self, binder: UnitBinder<'tcx>) -> Self::Out;
}

Required Associated Types§

Required Methods§

Source

fn with_binder(self, binder: UnitBinder<'tcx>) -> Self::Out

Implementors§

Source§

impl<'tcx, Base, Thir, Mir, OwnerId, Binder> HasBinderSetter<'tcx> for State<Base, Thir, Mir, OwnerId, Binder>

Source§

type Out = State<Base, Thir, Mir, OwnerId, Binder<TyCtxt<'tcx>, ()>>