1 2 3 4 5 6 7
pub trait LiftValue<Value, Output> { type Output; fn lift_value(value: Value) -> Self::Output; fn lift_output(output: Output) -> Self::Output; }