[][src]Struct casper_execution_engine::core::engine_state::MAX_PAYMENT

pub struct MAX_PAYMENT { /* fields omitted */ }

Methods from Deref<Target = U512>

pub const fn low_u128(&self) -> u128[src]

Low 2 words (u128)

pub fn as_u128(&self) -> u128[src]

Conversion to u128 with overflow checking

Panics

Panics if the number is larger than 2^128.

pub const MAX: U512[src]

pub const fn low_u32(&self) -> u32[src]

Conversion to u32

pub const fn low_u64(&self) -> u64[src]

Low word (u64)

pub fn as_u32(&self) -> u32[src]

Conversion to u32 with overflow checking

Panics

Panics if the number is larger than 2^32.

pub fn as_u64(&self) -> u64[src]

Conversion to u64 with overflow checking

Panics

Panics if the number is larger than u64::max_value().

pub fn as_usize(&self) -> usize[src]

Conversion to usize with overflow checking

Panics

Panics if the number is larger than usize::max_value().

pub fn is_zero(&self) -> bool[src]

Whether this is zero.

pub fn bits(&self) -> usize[src]

Return the least number of bits needed to represent the number

pub const fn bit(&self, index: usize) -> bool[src]

Return if specific bit is set.

Panics

Panics if index exceeds the bit width of the number.

pub fn leading_zeros(&self) -> u32[src]

Returns the number of leading zeros in the binary representation of self.

pub fn trailing_zeros(&self) -> u32[src]

Returns the number of leading zeros in the binary representation of self.

pub const fn byte(&self, index: usize) -> u8[src]

Return specific byte.

Panics

Panics if index exceeds the byte width of the number.

pub fn to_big_endian(&self, bytes: &mut [u8])[src]

Write to the slice in big-endian format.

pub fn to_little_endian(&self, bytes: &mut [u8])[src]

Write to the slice in little-endian format.

Trait Implementations

impl Deref for MAX_PAYMENT[src]

type Target = U512

The resulting type after dereferencing.

impl LazyStatic for MAX_PAYMENT[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> FromBits<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,