pub trait Into<T>: Sized + Viewwhere
T: View,
Self::V: SpecInto<<T as View>::V>,{
// Required method
fn ex_into(self) -> T;
}
Expand description
Vest equivalent of std::convert::Into
.
Required Methods§
Sourcefn ex_into(self) -> T
fn ex_into(self) -> T
Vest equivalent of std::convert::Into::into
.
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.