Trait IntoU256
pub trait IntoU256 {
// Required method
fn into_u256(self) -> Uint<256, 4>;
}Expand description
Trait for converting types into U256 values.
Required Methods§
fn into_u256(self) -> Uint<256, 4>
fn into_u256(self) -> Uint<256, 4>
Converts the implementing type into a U256 value.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".