Enum kdb::SerializationMode[][src]

pub enum SerializationMode {
    InProc,
    Unenumerate,
    Enumerate,
    UnenumerateWithTimestamps,
    Compress,
}

Describes how to perform serialization when using b9_serialize.

Variants

InProc

Valid for V3.0+ for serializing/deserializing within the same process.

Unenumerate

unenumerate, block serialization of timespan and timestamp (for working with versions prior to V2.6).

Enumerate

Retain enumerations, allow serialization of timespan and timestamp: Useful for passing data between threads.

UnenumerateWithTimestamps

Unenumerate, allow serialization of timespan and timestamp.

Compress

Unenumerate, compress, allow serialization of timespan and timestamp.

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