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 mirror the ToPrimitive trait from num-traits but with awareness of i256.