[][src]Struct casperlabs_engine_grpc_server::engine_server::state::BigInt

pub struct BigInt {
    pub value: String,
    pub bit_width: u32,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

value: Stringbit_width: u32unknown_fields: UnknownFieldscached_size: CachedSize

Methods

impl BigInt[src]

pub fn new() -> BigInt[src]

pub fn get_value(&self) -> &str[src]

pub fn clear_value(&mut self)[src]

pub fn set_value(&mut self, v: String)[src]

pub fn mut_value(&mut self) -> &mut String[src]

pub fn take_value(&mut self) -> String[src]

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

pub fn clear_bit_width(&mut self)[src]

pub fn set_bit_width(&mut self, v: u32)[src]

Trait Implementations

impl Clear for BigInt[src]

impl Clone for BigInt[src]

impl Debug for BigInt[src]

impl Default for BigInt[src]

impl<'a> Default for &'a BigInt[src]

impl From<U128> for BigInt[src]

impl From<U256> for BigInt[src]

impl From<U512> for BigInt[src]

impl Message for BigInt[src]

impl PartialEq<BigInt> for BigInt[src]

impl ProtobufValue for BigInt[src]

impl StructuralPartialEq for BigInt[src]

impl TryFrom<BigInt> for CLValue[src]

type Error = ParsingError

The type returned in the event of a conversion error.

impl TryFrom<BigInt> for U128[src]

type Error = ParsingError

The type returned in the event of a conversion error.

impl TryFrom<BigInt> for U256[src]

type Error = ParsingError

The type returned in the event of a conversion error.

impl TryFrom<BigInt> for U512[src]

type Error = ParsingError

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for BigInt

impl Send for BigInt

impl Sync for BigInt

impl Unpin for BigInt

impl UnwindSafe for BigInt

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

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>,