logo
pub trait Make3<Arg1, Arg2, Arg3> {
    fn make_3(arg1: Arg1, arg2: Arg2, arg3: Arg3) -> Self;

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

Constructor with three arguments.

Required Methods

Constructor with three arguments.

Provided Methods

Constructor with three arguments.

Implementors