pub trait ToI256 {
// Required method
fn to_i256(&self) -> Option<i256>;
}Expand description
Types that can potentially be converted to an i256.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".