[][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 positive integers. If this field is null, the indices must be signed int32

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<'a> Debug for DictionaryEncoding<'a>[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]

Auto Trait Implementations

impl<'a> RefUnwindSafe for DictionaryEncoding<'a>

impl<'a> Send for DictionaryEncoding<'a>

impl<'a> Sync for DictionaryEncoding<'a>

impl<'a> Unpin for DictionaryEncoding<'a>

impl<'a> UnwindSafe for DictionaryEncoding<'a>

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>,