Struct aws_sdk_cloudsearch::model::DoubleArrayOptions
source · [−]#[non_exhaustive]pub struct DoubleArrayOptions {
pub default_value: Option<f64>,
pub source_fields: Option<String>,
pub facet_enabled: Option<bool>,
pub search_enabled: Option<bool>,
pub return_enabled: Option<bool>,
}Expand description
Options for a field that contains an array of double-precision 64-bit floating point values. Present if IndexFieldType specifies the field is of type double-array. All options are enabled by default.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.default_value: Option<f64>A value to use for the field if the field isn’t specified for a document.
source_fields: Option<String>A list of source fields to map to the field.
facet_enabled: Option<bool>Whether facet information can be returned for the field.
search_enabled: Option<bool>Whether the contents of the field are searchable.
return_enabled: Option<bool>Whether the contents of the field can be returned in the search results.
Implementations
A value to use for the field if the field isn’t specified for a document.
A list of source fields to map to the field.
Whether facet information can be returned for the field.
Whether the contents of the field are searchable.
Whether the contents of the field can be returned in the search results.
Creates a new builder-style object to manufacture DoubleArrayOptions
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for DoubleArrayOptions
impl Send for DoubleArrayOptions
impl Sync for DoubleArrayOptions
impl Unpin for DoubleArrayOptions
impl UnwindSafe for DoubleArrayOptions
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more