Struct aws_sdk_cloudsearch::model::TextArrayOptions
source · [−]#[non_exhaustive]pub struct TextArrayOptions { /* private fields */ }Expand description
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.
Implementations
sourceimpl TextArrayOptions
impl TextArrayOptions
sourcepub fn default_value(&self) -> Option<&str>
pub fn default_value(&self) -> Option<&str>
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 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.
sourcepub fn highlight_enabled(&self) -> Option<bool>
pub fn highlight_enabled(&self) -> Option<bool>
Whether highlights can be returned for the field.
sourcepub fn analysis_scheme(&self) -> Option<&str>
pub fn analysis_scheme(&self) -> Option<&str>
The name of an analysis scheme for a text-array field.
sourceimpl TextArrayOptions
impl TextArrayOptions
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TextArrayOptions.
Trait Implementations
sourceimpl Clone for TextArrayOptions
impl Clone for TextArrayOptions
sourcefn clone(&self) -> TextArrayOptions
fn clone(&self) -> TextArrayOptions
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 more
sourceimpl Debug for TextArrayOptions
impl Debug for TextArrayOptions
sourceimpl PartialEq<TextArrayOptions> for TextArrayOptions
impl PartialEq<TextArrayOptions> for TextArrayOptions
sourcefn eq(&self, other: &TextArrayOptions) -> bool
fn eq(&self, other: &TextArrayOptions) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
impl StructuralPartialEq for TextArrayOptions
Auto Trait Implementations
impl RefUnwindSafe for TextArrayOptions
impl Send for TextArrayOptions
impl Sync for TextArrayOptions
impl Unpin for TextArrayOptions
impl UnwindSafe for TextArrayOptions
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more