[][src]Enum amadeus_types::Decimal

pub enum Decimal {
    Int32 {
        value: [u8; 4],
        precision: i32,
        scale: i32,
    },
    Int64 {
        value: [u8; 8],
        precision: i32,
        scale: i32,
    },
    Bytes {
        value: Vec<u8>,
        precision: i32,
        scale: i32,
    },
}

Rust representation for Decimal values.

This is not a representation of Parquet physical type, but rather a wrapper for DECIMAL logical type, and serves as container for raw parts of decimal values: unscaled value in bytes, precision and scale.

Variants

Int32

Decimal backed by i32.

Fields of Int32

value: [u8; 4]precision: i32scale: i32
Int64

Decimal backed by i64.

Fields of Int64

value: [u8; 8]precision: i32scale: i32
Bytes

Decimal backed by byte array.

Fields of Bytes

value: Vec<u8>precision: i32scale: i32

Methods

impl Decimal[src]

pub fn from_bytes(value: Vec<u8>, precision: i32, scale: i32) -> Self[src]

Creates new decimal value from Vec<u8>.

pub fn data(&self) -> &[u8][src]

Returns bytes of unscaled value.

pub fn precision(&self) -> i32[src]

Returns decimal precision.

pub fn scale(&self) -> i32[src]

Returns decimal scale.

Trait Implementations

impl DowncastImpl<Value> for Decimal[src]

impl Eq for Decimal[src]

impl Clone for Decimal[src]

impl PartialOrd<Decimal> for Decimal[src]

impl Ord for Decimal[src]

impl PartialEq<Decimal> for Decimal[src]

impl PartialEq<Decimal> for Value[src]

impl From<Decimal> for Value[src]

impl Hash for Decimal[src]

impl Debug for Decimal[src]

impl Serialize for Decimal[src]

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

Auto Trait Implementations

impl Unpin for Decimal

impl Sync for Decimal

impl Send for Decimal

impl UnwindSafe for Decimal

impl RefUnwindSafe for Decimal

Blanket Implementations

impl<A, B> Downcast<A> for B where
    A: DowncastImpl<B>, 
[src]

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

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]