[][src]Struct boa::builtins::value::rcbigint::RcBigInt

pub struct RcBigInt(_);

Methods from Deref<Target = BigInt>

pub fn to_string_radix(&self, radix: u32) -> String[src]

Convert bigint to string with radix.

pub fn to_f64(&self) -> f64[src]

Converts the BigInt to a f64 type.

Returns std::f64::INFINITY if the BigInt is too big.

Trait Implementations

impl Clone for RcBigInt[src]

impl Debug for RcBigInt[src]

impl Deref for RcBigInt[src]

type Target = BigInt

The resulting type after dereferencing.

impl Display for RcBigInt[src]

impl Eq for RcBigInt[src]

impl Finalize for RcBigInt[src]

impl From<BigInt> for RcBigInt[src]

impl From<RcBigInt> for Value[src]

impl Hash for RcBigInt[src]

impl Ord for RcBigInt[src]

impl PartialEq<RcBigInt> for RcBigInt[src]

impl PartialOrd<RcBigInt> for RcBigInt[src]

impl StructuralEq for RcBigInt[src]

impl StructuralPartialEq for RcBigInt[src]

impl Trace for RcBigInt[src]

Auto Trait Implementations

impl !RefUnwindSafe for RcBigInt

impl !Send for RcBigInt

impl !Sync for RcBigInt

impl Unpin for RcBigInt

impl UnwindSafe for RcBigInt

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.

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