logo
pub trait Make2<Arg1, Arg2> {
    fn make_2(arg1: Arg1, arg2: Arg2) -> Self;

    fn make(arg1: Arg1, arg2: Arg2) -> Self { ... }
}
Expand description

Constructor with two arguments.

Required Methods

Constructor with two arguments.

Provided Methods

Constructor with two arguments.

Implementors