Trait auto_currying::Curry
source · pub trait Curry<'a, T> {
type Output;
// Required method
fn curry(self) -> Self::Output;
}pub trait Curry<'a, T> {
type Output;
// Required method
fn curry(self) -> Self::Output;
}