pub trait From3<T1, T2, T3>where
Self: Sized,{
// Required method
fn from3(a1: T1, a2: T2, a3: T3) -> Self;
}
Expand description
Trait for converting from three arguments.
Required Methods§
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.