[][src]Struct arrow::ipc::gen::Schema::DictionaryKind

#[repr(transparent)]pub struct DictionaryKind(pub i16);

Dictionary encoding metadata Maintained for forwards compatibility, in the future Dictionaries might be explicit maps between integers and values allowing for non-contiguous index values

Implementations

impl DictionaryKind[src]

pub const DenseArray: Self[src]

pub const ENUM_MIN: i16[src]

pub const ENUM_MAX: i16[src]

pub const ENUM_VALUES: &'static [Self][src]

pub fn variant_name(self) -> Option<&'static str>[src]

Returns the variant's name or "" if unknown.

Trait Implementations

impl Clone for DictionaryKind[src]

impl Copy for DictionaryKind[src]

impl Debug for DictionaryKind[src]

impl EndianScalar for DictionaryKind[src]

impl Eq for DictionaryKind[src]

impl<'a> Follow<'a> for DictionaryKind[src]

type Inner = Self

impl Hash for DictionaryKind[src]

impl Ord for DictionaryKind[src]

impl PartialEq<DictionaryKind> for DictionaryKind[src]

impl PartialOrd<DictionaryKind> for DictionaryKind[src]

impl Push for DictionaryKind[src]

type Output = DictionaryKind

impl SimpleToVerifyInSlice for DictionaryKind[src]

impl StructuralEq for DictionaryKind[src]

impl StructuralPartialEq for DictionaryKind[src]

impl<'a> Verifiable for DictionaryKind[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,