pub trait ToI256 { // Required method fn to_i256(&self) -> Option<i256>; }
Types that can potentially be converted to an i256.
i256
Converts the value of self to an i256. If the value cannot be represented by an i256, then None is returned.
self
None