SqlU256

Type Alias SqlU256 

Source
pub type SqlU256 = SqlUint<256, 4>;
Expand description

A type alias for a 256-bit unsigned integer, commonly used for Ethereum values.

Aliased Type§

pub struct SqlU256(/* private fields */);

Implementations§

Source§

impl SqlU256

Source

pub fn square(self) -> Self

Returns the square of this value

Source

pub fn pow(self, exp: usize) -> Self

Returns the power of this value raised to the given exponent

Source

pub fn gcd(self, other: Self) -> Self

Returns the greatest common divisor of two values

Source

pub fn lcm(self, other: Self) -> Self

Returns the least common multiple of two values

Source

pub fn checked_add(self, rhs: Self) -> Option<Self>

Checked addition. Returns None if overflow occurred.

Source

pub fn checked_sub(self, rhs: Self) -> Option<Self>

Checked subtraction. Returns None if overflow occurred.

Source

pub fn checked_mul(self, rhs: Self) -> Option<Self>

Checked multiplication. Returns None if overflow occurred.

Source

pub fn checked_div(self, rhs: Self) -> Option<Self>

Checked division. Returns None if rhs == 0.

Source

pub fn saturating_add(self, rhs: Self) -> Self

Saturating addition. Clamps the result to U256::MAX if overflow occurred.

Source

pub fn saturating_sub(self, rhs: Self) -> Self

Saturating subtraction. Clamps the result to 0 if underflow occurred.

Source

pub fn saturating_mul(self, rhs: Self) -> Self

Saturating multiplication. Clamps the result to U256::MAX if overflow occurred.

Source

pub fn is_zero(self) -> bool

Returns true if the value is zero

Source

pub fn min(self, other: Self) -> Self

Returns the minimum of two values

Source

pub fn max(self, other: Self) -> Self

Returns the maximum of two values

Source§

impl SqlU256

Source

pub const ETHER: Self

The number of wei in one ether (10^18).

Source

pub fn from_be_slice(bytes: &[u8]) -> Self

Creates a SqlU256 from a big-endian byte slice (pads/truncates as alloy U256).

Source

pub fn as_u8(&self) -> Result<u8, &'static str>

Try to convert this value to u8. Returns Err if out of range.

Source

pub fn as_u16(&self) -> Result<u16, &'static str>

Try to convert this value to u16. Returns Err if out of range.

Source

pub fn as_u32(&self) -> Result<u32, &'static str>

Try to convert this value to u32. Returns Err if out of range.

Source

pub fn as_u64(&self) -> Result<u64, &'static str>

Try to convert this value to u64. Returns Err if out of range.

Source

pub fn as_u128(&self) -> Result<u128, &'static str>

Try to convert this value to u128. Returns Err if out of range.

Trait Implementations§

Source§

impl Add<&SqlUint<256, 4>> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &SqlU256) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&SqlUint<256, 4>> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Self) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&u128> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &u128) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&u128> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &u128) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&u16> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &u16) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&u16> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &u16) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&u32> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &u32) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&u32> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &u32) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&u64> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &u64) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&u64> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &u64) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&u8> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &u8) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&u8> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &u8) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&usize> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &usize) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<&usize> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &usize) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<SqlUint<256, 4>> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: SqlU256) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<i128> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i128) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<i16> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i16) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<i32> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i32) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<i64> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i64) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<i8> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i8) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<isize> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: isize) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<u128> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u128) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<u128> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u128) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<u16> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u16) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<u16> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u16) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<u32> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u32) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<u32> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u32) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<u64> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u64) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<u64> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u64) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<u8> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u8) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<u8> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u8) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<usize> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: usize) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<usize> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: usize) -> Self::Output

Performs the + operation. Read more
Source§

impl Add for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
Source§

impl AddAssign<&SqlUint<256, 4>> for SqlU256

Source§

fn add_assign(&mut self, rhs: &Self)

Performs the += operation. Read more
Source§

impl AddAssign for SqlU256

Source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
Source§

impl BitAnd for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: Self) -> Self::Output

Performs the & operation. Read more
Source§

impl BitOr for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: Self) -> Self::Output

Performs the | operation. Read more
Source§

impl BitXor for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: Self) -> Self::Output

Performs the ^ operation. Read more
Source§

impl Default for SqlU256

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl Div<&SqlUint<256, 4>> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &SqlU256) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&SqlUint<256, 4>> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &Self) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&u128> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &u128) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&u128> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &u128) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&u16> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &u16) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&u16> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &u16) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&u32> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &u32) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&u32> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &u32) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&u64> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &u64) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&u64> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &u64) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&u8> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &u8) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&u8> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &u8) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&usize> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &usize) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<&usize> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &usize) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<SqlUint<256, 4>> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: SqlU256) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<i128> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i128) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<i16> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i16) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<i32> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i32) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<i64> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i64) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<i8> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i8) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<isize> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: isize) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<u128> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u128) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<u128> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u128) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<u16> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u16) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<u16> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u16) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<u32> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u32) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<u32> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u32) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<u64> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u64) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<u64> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u64) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<u8> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u8) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<u8> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u8) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<usize> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: usize) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<usize> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: usize) -> Self::Output

Performs the / operation. Read more
Source§

impl Div for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Self) -> Self::Output

Performs the / operation. Read more
Source§

impl DivAssign<&SqlUint<256, 4>> for SqlU256

Source§

fn div_assign(&mut self, rhs: &Self)

Performs the /= operation. Read more
Source§

impl DivAssign for SqlU256

Source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
Source§

impl From<u128> for SqlU256

Source§

fn from(value: u128) -> Self

Converts to this type from the input type.
Source§

impl From<u16> for SqlU256

Source§

fn from(value: u16) -> Self

Converts to this type from the input type.
Source§

impl From<u32> for SqlU256

Source§

fn from(value: u32) -> Self

Converts to this type from the input type.
Source§

impl From<u64> for SqlU256

Source§

fn from(value: u64) -> Self

Converts to this type from the input type.
Source§

impl From<u8> for SqlU256

Source§

fn from(value: u8) -> Self

Converts to this type from the input type.
Source§

impl From<usize> for SqlU256

Source§

fn from(value: usize) -> Self

Converts to this type from the input type.
Source§

impl Mul<&SqlUint<256, 4>> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &SqlU256) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&SqlUint<256, 4>> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Self) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&u128> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &u128) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&u128> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &u128) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&u16> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &u16) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&u16> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &u16) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&u32> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &u32) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&u32> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &u32) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&u64> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &u64) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&u64> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &u64) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&u8> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &u8) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&u8> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &u8) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&usize> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &usize) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&usize> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &usize) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<SqlUint<256, 4>> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: SqlU256) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<i128> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i128) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<i16> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i16) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<i32> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i32) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<i64> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i64) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<i8> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i8) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<isize> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: isize) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<u128> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u128) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<u128> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u128) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<u16> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u16) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<u16> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u16) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<u32> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u32) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<u32> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u32) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<u64> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u64) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<u64> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u64) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<u8> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u8) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<u8> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u8) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<usize> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: usize) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<usize> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: usize) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Self) -> Self::Output

Performs the * operation. Read more
Source§

impl MulAssign<&SqlUint<256, 4>> for SqlU256

Source§

fn mul_assign(&mut self, rhs: &Self)

Performs the *= operation. Read more
Source§

impl MulAssign for SqlU256

Source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
Source§

impl Not for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the ! operator.
Source§

fn not(self) -> Self::Output

Performs the unary ! operation. Read more
Source§

impl PartialEq<u128> for SqlU256

Source§

fn eq(&self, other: &u128) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<u16> for SqlU256

Source§

fn eq(&self, other: &u16) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<u32> for SqlU256

Source§

fn eq(&self, other: &u32) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<u64> for SqlU256

Source§

fn eq(&self, other: &u64) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<u8> for SqlU256

Source§

fn eq(&self, other: &u8) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd<u128> for SqlU256

Source§

fn partial_cmp(&self, other: &u128) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl PartialOrd<u16> for SqlU256

Source§

fn partial_cmp(&self, other: &u16) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl PartialOrd<u32> for SqlU256

Source§

fn partial_cmp(&self, other: &u32) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl PartialOrd<u64> for SqlU256

Source§

fn partial_cmp(&self, other: &u64) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl PartialOrd<u8> for SqlU256

Source§

fn partial_cmp(&self, other: &u8) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Rem<&SqlUint<256, 4>> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &SqlU256) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&SqlUint<256, 4>> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &Self) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&u128> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &u128) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&u128> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &u128) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&u16> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &u16) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&u16> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &u16) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&u32> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &u32) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&u32> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &u32) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&u64> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &u64) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&u64> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &u64) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&u8> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &u8) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&u8> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &u8) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&usize> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &usize) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<&usize> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &usize) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<SqlUint<256, 4>> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: SqlU256) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<u128> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u128) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<u128> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u128) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<u16> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u16) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<u16> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u16) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<u32> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u32) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<u32> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u32) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<u64> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u64) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<u64> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u64) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<u8> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u8) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<u8> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u8) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<usize> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: usize) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<usize> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: usize) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: Self) -> Self::Output

Performs the % operation. Read more
Source§

impl RemAssign<&SqlUint<256, 4>> for SqlU256

Source§

fn rem_assign(&mut self, rhs: &Self)

Performs the %= operation. Read more
Source§

impl RemAssign for SqlU256

Source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
Source§

impl Shl<usize> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: usize) -> Self::Output

Performs the << operation. Read more
Source§

impl Shr<usize> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: usize) -> Self::Output

Performs the >> operation. Read more
Source§

impl Sub<&SqlUint<256, 4>> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &SqlU256) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&SqlUint<256, 4>> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &Self) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&u128> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u128) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&u128> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u128) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&u16> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u16) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&u16> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u16) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&u32> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u32) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&u32> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u32) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&u64> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u64) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&u64> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u64) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&u8> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u8) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&u8> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &u8) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&usize> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &usize) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<&usize> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &usize) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<SqlUint<256, 4>> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: SqlU256) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<i128> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i128) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<i16> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i16) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<i32> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i32) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<i64> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i64) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<i8> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i8) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<isize> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: isize) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<u128> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u128) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<u128> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u128) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<u16> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u16) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<u16> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u16) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<u32> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u32) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<u32> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u32) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<u64> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u64) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<u64> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u64) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<u8> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u8) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<u8> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u8) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<usize> for &SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: usize) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<usize> for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: usize) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub for SqlU256

Source§

type Output = SqlUint<256, 4>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
Source§

impl SubAssign<&SqlUint<256, 4>> for SqlU256

Source§

fn sub_assign(&mut self, rhs: &Self)

Performs the -= operation. Read more
Source§

impl SubAssign for SqlU256

Source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
Source§

impl TryFrom<i128> for SqlU256

Source§

type Error = &'static str

The type returned in the event of a conversion error.
Source§

fn try_from(value: i128) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<i16> for SqlU256

Source§

type Error = &'static str

The type returned in the event of a conversion error.
Source§

fn try_from(value: i16) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<i32> for SqlU256

Source§

type Error = &'static str

The type returned in the event of a conversion error.
Source§

fn try_from(value: i32) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<i64> for SqlU256

Source§

type Error = &'static str

The type returned in the event of a conversion error.
Source§

fn try_from(value: i64) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<i8> for SqlU256

Source§

type Error = &'static str

The type returned in the event of a conversion error.
Source§

fn try_from(value: i8) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<isize> for SqlU256

Source§

type Error = &'static str

The type returned in the event of a conversion error.
Source§

fn try_from(value: isize) -> Result<Self, Self::Error>

Performs the conversion.