pub trait IntoIn<'a, T>: Sized { // Required method fn into_in(self, allocator: &'a Allocator) -> T; }
This trait works similarly to the standard library Into trait. It is similar to FromIn is reflective, A FromIn implementation also implicitly implements IntoIn for the opposite type.
Into
FromIn
IntoIn
Converts this type into the (usually inferred) input type within the given allocator.
allocator
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
FromIn implicitly implements IntoIn.