[−][src]Enum sp_rpc::number::NumberOrHex
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
The original header number type of block.
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]
Number: Deserialize<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
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]
fn eq(&self, other: &NumberOrHex<Number>) -> bool
[src]
fn ne(&self, other: &NumberOrHex<Number>) -> bool
[src]
impl<Number> Serialize for NumberOrHex<Number> where
Number: Serialize,
[src]
Number: Serialize,
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer,
[src]
__S: Serializer,
impl<Number> StructuralPartialEq for NumberOrHex<Number>
[src]
Auto Trait Implementations
impl<Number> RefUnwindSafe for NumberOrHex<Number> where
Number: RefUnwindSafe,
Number: RefUnwindSafe,
impl<Number> Send for NumberOrHex<Number> where
Number: Send,
Number: Send,
impl<Number> Sync for NumberOrHex<Number> where
Number: Sync,
Number: Sync,
impl<Number> Unpin for NumberOrHex<Number> where
Number: Unpin,
Number: Unpin,
impl<Number> UnwindSafe for NumberOrHex<Number> where
Number: UnwindSafe,
Number: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, Outer> IsWrappedBy<Outer> for T where
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
[src]
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
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,
T: Debug,
impl<T> MaybeRefUnwindSafe for T where
T: RefUnwindSafe,
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]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]
T: UncheckedFrom<S>,
fn unchecked_into(self) -> T
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,