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

pub struct DictionaryEncoding<'a> {
    pub _tab: Table<'a>,
}

Fields

_tab: Table<'a>

Implementations

impl<'a> DictionaryEncoding<'a>[src]

pub fn init_from_table(table: Table<'a>) -> Self[src]

pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr>(
    _fbb: &'mut_bldr mut FlatBufferBuilder<'bldr>,
    args: &'args DictionaryEncodingArgs<'args>
) -> WIPOffset<DictionaryEncoding<'bldr>>
[src]

pub const VT_ID: VOffsetT[src]

pub const VT_INDEXTYPE: VOffsetT[src]

pub const VT_ISORDERED: VOffsetT[src]

pub const VT_DICTIONARYKIND: VOffsetT[src]

pub fn id(&self) -> i64[src]

The known dictionary id in the application where this data is used. In the file or streaming formats, the dictionary ids are found in the DictionaryBatch messages

pub fn indexType(&self) -> Option<Int<'a>>[src]

The dictionary indices are constrained to be non-negative integers. If this field is null, the indices must be signed int32. To maximize cross-language compatibility and performance, implementations are recommended to prefer signed integer types over unsigned integer types and to avoid uint64 indices unless they are required by an application.

pub fn isOrdered(&self) -> bool[src]

By default, dictionaries are not ordered, or the order does not have semantic meaning. In some statistical, applications, dictionary-encoding is used to represent ordered categorical data, and we provide a way to preserve that metadata here

pub fn dictionaryKind(&self) -> DictionaryKind[src]

Trait Implementations

impl<'a> Clone for DictionaryEncoding<'a>[src]

impl<'a> Copy for DictionaryEncoding<'a>[src]

impl Debug for DictionaryEncoding<'_>[src]

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

type Inner = DictionaryEncoding<'a>

impl<'a> PartialEq<DictionaryEncoding<'a>> for DictionaryEncoding<'a>[src]

impl<'a> StructuralPartialEq for DictionaryEncoding<'a>[src]

impl Verifiable for DictionaryEncoding<'_>[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<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>,