[][src]Struct in3_sys::uint256_t

#[repr(C)]pub struct uint256_t {
    pub data: [u8; 32],
}

a 32 byte long integer used to store ethereum-numbers.

use the as_long() or as_double() to convert this to a useable number.

Fields

data: [u8; 32]

Trait Implementations

impl Clone for uint256_t[src]

impl Copy for uint256_t[src]

impl Debug for uint256_t[src]

Auto Trait Implementations

impl Send for uint256_t

impl Sync for uint256_t

impl Unpin for uint256_t

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, U> Into<U> for T where
    U: From<T>, 
[src]

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.