[−][src]Enum amadeus_types::Decimal
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
Int32Decimal backed by i32.
Fields of Int32
Int64Decimal backed by i64.
Fields of Int64
BytesDecimal backed by byte array.
Fields of Bytes
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]
fn downcast_impl(self_: Value) -> Result<Self, DowncastError>[src]
impl Eq for Decimal[src]
impl Clone for Decimal[src]
impl PartialOrd<Decimal> for Decimal[src]
fn partial_cmp(&self, other: &Decimal) -> Option<Ordering>[src]
fn lt(&self, other: &Decimal) -> bool[src]
fn le(&self, other: &Decimal) -> bool[src]
fn gt(&self, other: &Decimal) -> bool[src]
fn ge(&self, other: &Decimal) -> bool[src]
impl Ord for Decimal[src]
fn cmp(&self, other: &Decimal) -> Ordering[src]
fn max(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> Self1.21.0[src]
fn clamp(self, min: Self, max: Self) -> Self[src]
impl PartialEq<Decimal> for Decimal[src]
impl PartialEq<Decimal> for Value[src]
impl From<Decimal> for Value[src]
impl Hash for Decimal[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl Debug for Decimal[src]
impl Serialize for Decimal[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl<'de> Deserialize<'de> for Decimal[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
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]
A: DowncastImpl<B>,
fn downcast(Self) -> Result<A, DowncastError>[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> DeserializeOwned for T where
T: Deserialize<'de>, [src]
T: Deserialize<'de>,