Skip to main content

DecimalAccumulator

Struct DecimalAccumulator 

Source
struct DecimalAccumulator<T: DecimalType> {
    value: T::Native,
    chunk: u64,
    chunk_len: usize,
    negative: bool,
}
Expand description

Accumulates decimal digits into chunk, folding it into value whenever it reaches MAX_CHUNK_DIGITS digits

Fields§

§value: T::Native§chunk: u64§chunk_len: usize§negative: bool

Implementations§

Source§

impl<T: DecimalType> DecimalAccumulator<T>

Source

fn push(&mut self, digit: u8) -> Result<(), DecimalParseError>

Source

fn finish(self) -> Result<T::Native, DecimalParseError>

Folds the digits still in chunk into the value

Auto Trait Implementations§

§

impl<T> Freeze for DecimalAccumulator<T>
where <T as ArrowPrimitiveType>::Native: Freeze,

§

impl<T> RefUnwindSafe for DecimalAccumulator<T>
where <T as ArrowPrimitiveType>::Native: RefUnwindSafe,

§

impl<T> Send for DecimalAccumulator<T>
where <T as ArrowPrimitiveType>::Native: Send,

§

impl<T> Sync for DecimalAccumulator<T>
where <T as ArrowPrimitiveType>::Native: Sync,

§

impl<T> Unpin for DecimalAccumulator<T>
where <T as ArrowPrimitiveType>::Native: Unpin,

§

impl<T> UnsafeUnpin for DecimalAccumulator<T>
where <T as ArrowPrimitiveType>::Native: UnsafeUnpin,

§

impl<T> UnwindSafe for DecimalAccumulator<T>
where <T as ArrowPrimitiveType>::Native: UnwindSafe,

Blanket Implementations§

§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.