Trait test_tools::Make3

source ·
pub trait Make3<Arg1, Arg2, Arg3>: Sized {
    // Required method
    fn make_3(arg1: Arg1, arg2: Arg2, arg3: Arg3) -> Self;

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

Constructor with three arguments.

Required Methods§

source

fn make_3(arg1: Arg1, arg2: Arg2, arg3: Arg3) -> Self

Constructor with three arguments.

Provided Methods§

source

fn make(arg1: Arg1, arg2: Arg2, arg3: Arg3) -> Self

Constructor with three arguments.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> Make3<T, T, T> for Many<T>