Trait script::conversions::TryConvert
source · pub trait TryConvert<T> {
type Error;
// Required method
fn try_convert(self) -> Result<T, Self::Error>;
}
Expand description
A version of the TryInto
pub trait TryConvert<T> {
type Error;
// Required method
fn try_convert(self) -> Result<T, Self::Error>;
}
A version of the TryInto