#[non_exhaustive]pub struct DefineIndexFieldOutput {
pub index_field: Option<IndexFieldStatus>,
/* private fields */
}Expand description
The result of a request. Contains the status of the newly-configured index field.DefineIndexField
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.index_field: Option<IndexFieldStatus>The value of an IndexField and its current status.
Implementations§
source§impl DefineIndexFieldOutput
impl DefineIndexFieldOutput
sourcepub fn index_field(&self) -> Option<&IndexFieldStatus>
pub fn index_field(&self) -> Option<&IndexFieldStatus>
The value of an IndexField and its current status.
source§impl DefineIndexFieldOutput
impl DefineIndexFieldOutput
sourcepub fn builder() -> DefineIndexFieldOutputBuilder
pub fn builder() -> DefineIndexFieldOutputBuilder
Creates a new builder-style object to manufacture DefineIndexFieldOutput.
Trait Implementations§
source§impl Clone for DefineIndexFieldOutput
impl Clone for DefineIndexFieldOutput
source§fn clone(&self) -> DefineIndexFieldOutput
fn clone(&self) -> DefineIndexFieldOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for DefineIndexFieldOutput
impl Debug for DefineIndexFieldOutput
source§impl PartialEq for DefineIndexFieldOutput
impl PartialEq for DefineIndexFieldOutput
source§fn eq(&self, other: &DefineIndexFieldOutput) -> bool
fn eq(&self, other: &DefineIndexFieldOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for DefineIndexFieldOutput
impl RequestId for DefineIndexFieldOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for DefineIndexFieldOutput
Auto Trait Implementations§
impl RefUnwindSafe for DefineIndexFieldOutput
impl Send for DefineIndexFieldOutput
impl Sync for DefineIndexFieldOutput
impl Unpin for DefineIndexFieldOutput
impl UnwindSafe for DefineIndexFieldOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.