Trait frunk_core::hlist::LiftFrom
source · pub trait LiftFrom<T, I> {
// Required method
fn lift_from(part: T) -> Self;
}
Expand description
Indexed type conversions of T -> Self
with index I
.
This is a generalized version of From
which for example allows the caller
to use default values for parts of Self
and thus “fill in the blanks”.
LiftFrom
is the reciprocal of LiftInto
.
Required Methods§
Object Safety§
This trait is not object safe.