Decimal32Type

Struct Decimal32Type 

Source
pub struct Decimal32Type {}
Expand description

The decimal type for a Decimal32Array

Trait Implementations§

Source§

impl ArrowPrimitiveType for Decimal32Type

Source§

const DATA_TYPE: DataType = <Self as DecimalType>::DEFAULT_TYPE

the corresponding Arrow data type of this primitive type.
Source§

type Native = i32

Corresponding Rust native type for the primitive type.
Source§

fn default_value() -> Self::Native

Returns a default value of this primitive type. Read more
Source§

impl Debug for Decimal32Type

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl DecimalType for Decimal32Type

Source§

const BYTE_LENGTH: usize = 4usize

Width of the type
Source§

const MAX_PRECISION: u8 = 9u8

Maximum number of significant digits
Source§

const MAX_SCALE: i8 = 9i8

Maximum no of digits after the decimal point (note the scale can be negative)
Source§

const TYPE_CONSTRUCTOR: fn(u8, i8) -> DataType = {arrow::datatypes::DataType::Decimal32 as fn(u8, i8) -> arrow::datatypes::DataType}

fn to create its DataType
Source§

const DEFAULT_TYPE: DataType

Default values for DataType
Source§

const PREFIX: &'static str = "Decimal32"

“Decimal32”, “Decimal64”, “Decimal128” or “Decimal256”, for use in error messages
Source§

fn format_decimal( value: <Decimal32Type as ArrowPrimitiveType>::Native, precision: u8, scale: i8, ) -> String

Formats the decimal value with the provided precision and scale
Source§

fn validate_decimal_precision(num: i32, precision: u8) -> Result<(), ArrowError>

Validates that value contains no more than precision decimal digits
Source§

fn is_valid_decimal_precision( value: <Decimal32Type as ArrowPrimitiveType>::Native, precision: u8, ) -> bool

Determines whether value contains no more than precision decimal digits

Auto Trait Implementations§

Blanket Implementations§

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
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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.

Source§

impl<T> IntoRequest<T> for T

Source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
Source§

impl<L> LayerExt<L> for L

Source§

fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>
where L: Layer<S>,

Applies the layer to a service and wraps it in Layered.
Source§

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

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

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

Source§

type Error = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

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.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

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

Source§

impl<T> ArrowNumericType for T