Trait arithmetic_eval::fns::TryFromValue
source · pub trait TryFromValue<T>: Sized {
// Required method
fn try_from_value(value: Value<T>) -> Result<Self, FromValueError>;
}
Expand description
Required Methods§
sourcefn try_from_value(value: Value<T>) -> Result<Self, FromValueError>
fn try_from_value(value: Value<T>) -> Result<Self, FromValueError>
Attempts to convert value
to a type supported by the function.
Object Safety§
This trait is not object safe.