Enum elastic_types::document::mapping::Dynamic []

pub enum Dynamic {
    True,
    False,
    Strict,
}

The dynamic setting may be set at the mapping type level, and on each inner object. Inner objects inherit the setting from their parent object or from the mapping type.

Variants

Newly detected fields are added to the mapping. (default).

Newly detected fields are ignored. New fields must be added explicitly.

If new fields are detected, an exception is thrown and the document is rejected.

Trait Implementations

impl Debug for Dynamic
[src]

Formats the value using the given formatter.

impl Clone for Dynamic
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Dynamic
[src]

impl Serialize for Dynamic
[src]

Serialize this value into the given Serde serializer. Read more