pub trait ToPrimitive: ToPrimitive {
// Required method
fn to_i256(&self) -> Option<i256>;
}Expand description
Checked conversion from one primitive type to another.
This is meant to extend the ToPrimitive trait from num-traits with awareness of i256.