pub trait FromValueTuple: Sized {
// Required method
fn from_value_tuple<I>(i: I) -> Self
where I: IntoValueTuple;
}
Required Methodsยง
fn from_value_tuple<I>(i: I) -> Selfwhere
I: IntoValueTuple,
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.