Struct rusoto_cloudsearch::TextArrayOptions [] [src]

pub struct TextArrayOptions {
    pub analysis_scheme: Option<String>,
    pub default_value: Option<String>,
    pub highlight_enabled: Option<bool>,
    pub return_enabled: Option<bool>,
    pub source_fields: Option<String>,
}

Options for a field that contains an array of text strings. Present if IndexFieldType specifies the field is of type text-array. A text-array field is always searchable. All options are enabled by default.

Fields

The name of an analysis scheme for a text-array field.

A value to use for the field if the field isn't specified for a document.

Whether highlights can be returned for the field.

Whether the contents of the field can be returned in the search results.

A list of source fields to map to the field.

Trait Implementations

impl Default for TextArrayOptions
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for TextArrayOptions
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for TextArrayOptions
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations