[][src]Enum mathml::NumType

pub enum NumType {
    Real(f64),
    Integer(i64),
    Rational(i64i64),
    ComplexCartesian(f64f64),
    ComplexPolar(f64f64),
    Constant(String),
    ENotation(f64i64),
}

Variants

Real(f64)
Integer(i64)
Rational(i64i64)
ComplexCartesian(f64f64)
ComplexPolar(f64f64)
Constant(String)
ENotation(f64i64)

Trait Implementations

impl Debug for NumType[src]

impl<'de> Deserialize<'de> for NumType[src]

impl Eq for NumType[src]

impl PartialEq<NumType> for NumType[src]

impl Serialize for NumType[src]

Auto Trait Implementations

impl RefUnwindSafe for NumType

impl Send for NumType

impl Sync for NumType

impl Unpin for NumType

impl UnwindSafe for NumType

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