[][src]Enum ajson::Number

pub enum Number {
    F64(String),
    U64(String),
    I64(String),
}

Variants

F64(String)U64(String)I64(String)

Methods

impl Number[src]

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

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

pub fn to_u64(&self) -> u64[src]

pub fn to_i64(&self) -> i64[src]

Trait Implementations

impl Clone for Number[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'a> From<&'a [u8]> for Number[src]

impl<'a> From<&'a str> for Number[src]

impl<'a, R> From<&'a mut R> for Number where
    R: ByteReader, 
[src]

impl PartialEq<Number> for Number[src]

impl Debug for Number[src]

Auto Trait Implementations

impl Sync for Number

impl Send for Number

impl Unpin for Number

impl RefUnwindSafe for Number

impl UnwindSafe for Number

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]