Trait variadic_from::From_2

source ·
pub trait From_2<Arg1, Arg2>
where Self: Sized,
{ // Required method fn from_2(arg1: Arg1, arg2: Arg2) -> Self; }
Expand description

Constructor with two arguments.

Required Methods§

source

fn from_2(arg1: Arg1, arg2: Arg2) -> Self

Constructor with two arguments.

Object Safety§

This trait is not object safe.

Implementors§