Enum kdb::SerializationMode[][src]

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

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

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.