Trait script::conversions::Convert
source · pub trait Convert<T> {
// Required method
fn convert(self) -> T;
}
Expand description
A version of the Into
pub trait Convert<T> {
// Required method
fn convert(self) -> T;
}
A version of the Into