pub trait From_3<Arg1, Arg2, Arg3>: Sized {
    // Required method
    fn from_3(arg1: Arg1, arg2: Arg2, arg3: Arg3) -> Self;
}
Expand description

Constructor with three arguments.

Required Methods§

source

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

Constructor with three arguments.

Object Safety§

This trait is not object safe.

Implementors§