[][src]Enum sp_rpc::number::NumberOrHex

pub enum NumberOrHex<Number> {
    Number(Number),
    Hex(U256),
}

RPC Block number type

We allow two representations of the block number as input. Either we deserialize to the type that is specified in the block type or we attempt to parse given hex value. We do that for consistency with the returned type, default generic header serializes block number as hex to avoid overflows in JavaScript.

Variants

Number(Number)

The original header number type of block.

Hex(U256)

Hex representation of the block number.

Methods

impl<Number: TryFrom<u64> + From<u32> + Debug + PartialOrd> NumberOrHex<Number>[src]

pub fn to_number(self) -> Result<Number, String>[src]

Attempts to convert into concrete block number.

Fails in case hex number is too big.

Trait Implementations

impl<Number: Debug> Debug for NumberOrHex<Number>[src]

impl<'de, Number> Deserialize<'de> for NumberOrHex<Number> where
    Number: Deserialize<'de>, 
[src]

impl<Number> From<U256> for NumberOrHex<Number>[src]

impl From<u64> for NumberOrHex<u64>[src]

impl<Number: PartialEq> PartialEq<NumberOrHex<Number>> for NumberOrHex<Number>[src]

impl<Number> Serialize for NumberOrHex<Number> where
    Number: Serialize
[src]

impl<Number> StructuralPartialEq for NumberOrHex<Number>[src]

Auto Trait Implementations

impl<Number> RefUnwindSafe for NumberOrHex<Number> where
    Number: RefUnwindSafe

impl<Number> Send for NumberOrHex<Number> where
    Number: Send

impl<Number> Sync for NumberOrHex<Number> where
    Number: Sync

impl<Number> Unpin for NumberOrHex<Number> where
    Number: Unpin

impl<Number> UnwindSafe for NumberOrHex<Number> where
    Number: UnwindSafe

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T, Outer> IsWrappedBy<Outer> for T where
    Outer: AsRef<T> + AsMut<T> + From<T>,
    T: From<Outer>, 
[src]

fn from_ref(outer: &Outer) -> &T[src]

Get a reference to the inner from the outer.

fn from_mut(outer: &mut Outer) -> &mut T[src]

Get a mutable reference to the inner from the outer.

impl<T> MaybeDebug for T where
    T: Debug

impl<T> MaybeRefUnwindSafe for T where
    T: RefUnwindSafe

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<S, T> UncheckedInto<T> for S where
    T: UncheckedFrom<S>, 
[src]

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