Struct aws_sdk_cloudsearch::model::DoubleArrayOptions
source · [−]#[non_exhaustive]pub struct DoubleArrayOptions { /* private fields */ }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.
Implementations
sourceimpl DoubleArrayOptions
impl DoubleArrayOptions
sourcepub fn default_value(&self) -> Option<f64>
pub fn default_value(&self) -> Option<f64>
A value to use for the field if the field isn’t specified for a document.
sourcepub fn source_fields(&self) -> Option<&str>
pub fn source_fields(&self) -> Option<&str>
A list of source fields to map to the field.
sourcepub fn facet_enabled(&self) -> Option<bool>
pub fn facet_enabled(&self) -> Option<bool>
Whether facet information can be returned for the field.
sourcepub fn search_enabled(&self) -> Option<bool>
pub fn search_enabled(&self) -> Option<bool>
Whether the contents of the field are searchable.
sourcepub fn return_enabled(&self) -> Option<bool>
pub fn return_enabled(&self) -> Option<bool>
Whether the contents of the field can be returned in the search results.
sourceimpl DoubleArrayOptions
impl DoubleArrayOptions
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DoubleArrayOptions.
Trait Implementations
sourceimpl Clone for DoubleArrayOptions
impl Clone for DoubleArrayOptions
sourcefn clone(&self) -> DoubleArrayOptions
fn clone(&self) -> DoubleArrayOptions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for DoubleArrayOptions
impl Debug for DoubleArrayOptions
sourceimpl PartialEq<DoubleArrayOptions> for DoubleArrayOptions
impl PartialEq<DoubleArrayOptions> for DoubleArrayOptions
sourcefn eq(&self, other: &DoubleArrayOptions) -> bool
fn eq(&self, other: &DoubleArrayOptions) -> bool
impl StructuralPartialEq for DoubleArrayOptions
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more