Trait From3

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

Constructor with three arguments.

Required Methods§

Source

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

Constructor with three arguments.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§