pub enum DataType {
Show 25 variants Boolean, UInt8, UInt16, UInt32, UInt64, Int8, Int16, Int32, Int64, Float32, Float64, Decimal(Option<usize>, Option<usize>), Utf8, Binary, Date, Datetime(TimeUnit, Option<String>), Duration(TimeUnit), Time, Array(Box<DataType>, usize), List(Box<DataType>), Object(&'static str), Null, Categorical(Option<Arc<RevMapping>>), Struct(Vec<Field>), Unknown,
}

Variants§

§

Boolean

§

UInt8

§

UInt16

§

UInt32

§

UInt64

§

Int8

§

Int16

§

Int32

§

Int64

§

Float32

§

Float64

§

Decimal(Option<usize>, Option<usize>)

Available on crate feature dtype-decimal only.

Fixed point decimal type optional precision and non-negative scale. This is backed by a signed 128-bit integer which allows for up to 38 significant digits.

§

Utf8

String data

§

Binary

§

Date

A 32-bit date representing the elapsed time since UNIX epoch (1970-01-01) in days (32 bits).

§

Datetime(TimeUnit, Option<String>)

A 64-bit date representing the elapsed time since UNIX epoch (1970-01-01) in the given timeunit (64 bits).

§

Duration(TimeUnit)

§

Time

A 64-bit time representing the elapsed time since midnight in nanoseconds

§

Array(Box<DataType>, usize)

Available on crate feature dtype-array only.

A nested list with a fixed size in each row

§

List(Box<DataType>)

A nested list with a variable size in each row

§

Object(&'static str)

Available on crate feature object only.

A generic type that can be used in a Series &’static str can be used to determine/set inner type

§

Null

§

Categorical(Option<Arc<RevMapping>>)

Available on crate feature dtype-categorical only.
§

Struct(Vec<Field>)

Available on crate feature dtype-struct only.
§

Unknown

Implementations§

source§

impl DataType

source

pub fn value_within_range(&self, other: AnyValue<'_>) -> bool

source

pub fn inner_dtype(&self) -> Option<&DataType>

Get the inner data type of a nested type.

source

pub fn to_physical(&self) -> DataType

Convert to the physical data type

source

pub fn is_logical(&self) -> bool

Check if this DataType is a logical type

source

pub fn is_temporal(&self) -> bool

Check if this DataType is a temporal type

source

pub fn is_primitive(&self) -> bool

Check if datatype is a primitive type. By that we mean that it is not a container type.

source

pub fn is_numeric(&self) -> bool

Check if this DataType is a basic numeric type (excludes Decimal).

source

pub fn is_decimal(&self) -> bool

Check if this DataType is a Decimal type (of any scale/precision).

source

pub fn is_float(&self) -> bool

Check if this DataType is a basic floating point type (excludes Decimal).

source

pub fn is_integer(&self) -> bool

Check if this DataType is an integer.

source

pub fn is_signed_integer(&self) -> bool

source

pub fn is_unsigned_integer(&self) -> bool

source

pub fn to_arrow(&self) -> ArrowDataType

Convert to an Arrow data type.

source

pub fn is_nested_null(&self) -> bool

Trait Implementations§

source§

impl Clone for DataType

source§

fn clone(&self) -> DataType

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for DataType

source§

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

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

impl Default for DataType

source§

fn default() -> DataType

Returns the “default value” for a type. Read more
source§

impl Display for DataType

source§

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

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

impl<'a> From<&AnyValue<'a>> for DataType

source§

fn from(val: &AnyValue<'a>) -> DataType

Converts to this type from the input type.
source§

impl From<&ArrowDataType> for DataType

source§

fn from(dt: &ArrowDataType) -> DataType

Converts to this type from the input type.
source§

impl From<AnyValue<'_>> for DataType

source§

fn from(value: AnyValue<'_>) -> DataType

Converts to this type from the input type.
source§

impl Hash for DataType

source§

fn hash<H>(&self, state: &mut H)where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<ArrowDataType> for DataType

source§

fn eq(&self, other: &ArrowDataType) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq for DataType

source§

fn eq(&self, other: &DataType) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for DataType

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere 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> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

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

§

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 Twhere U: TryFrom<T>,

§

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

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V