[][src]Enum om2::NumericUnion

pub enum NumericUnion {
    Decimal(Decimal),
    Double(f64),
    Float(f32),
    Integer(i64),
}

A datatype that is the union of numeric xsd data types. "numericUnion" is equivalent to the xsd specification that uses an xsd:union of memberTypes="xsd:decimal xsd:double xsd:float xsd:integer".

ID: http://www.linkedmodel.org/schema/dtype#numericUnion

Variants

Decimal(Decimal)

decimal represents a subset of the real numbers, which can be represented by decimal numerals.

Double(f64)

The double datatype is patterned after the IEEE double-precision 64-bit floating point type [IEEE 754-1985].

Float(f32)

float is patterned after the IEEE single-precision 32-bit floating point type [IEEE 754-1985].

Integer(i64)

integer is ·derived· from decimal by fixing the value of ·fractionDigits· to be 0and disallowing the trailing decimal point.

Implementations

impl NumericUnion[src]

pub fn add(self, val2: Self) -> Result<Self, String>[src]

Allows adding two NumericUnions

pub fn sub(self, val2: Self) -> Result<Self, String>[src]

Allows subtracting two NumericUnions

pub fn is_zero(&self) -> bool[src]

Determine if this value is zero

pub fn is_negative(&self) -> bool[src]

Determine if this value is negative

Trait Implementations

impl Clone for NumericUnion[src]

impl Debug for NumericUnion[src]

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

impl From<Decimal> for NumericUnion[src]

impl From<f32> for NumericUnion[src]

impl From<f64> for NumericUnion[src]

impl From<i64> for NumericUnion[src]

impl PartialEq<NumericUnion> for NumericUnion[src]

impl Serialize for NumericUnion[src]

impl StructuralPartialEq for NumericUnion[src]

Auto Trait Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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.