pub trait Constrain<I> {
type Lift;
// Required method
fn i_force(&self, _: I) -> Self::Lift;
// Provided method
fn i(&self, i: I) -> Self::Lift
where Self::Lift: ExPath { ... }
}
Expand description
Implemented by higher order representations of constrained functions.